You are here

function i18nstrings_update_1 in Internationalization 5.3

Same name and namespace in other branches
  1. 5 experimental/i18nstrings.install \i18nstrings_update_1()

File

i18nstrings/i18nstrings.install, line 29

Code

function i18nstrings_update_1() {
  $ret = array();
  $ret[] = update_sql("CREATE TABLE  {i18n_locale} (\n  `strid` varchar(255) NOT NULL,\n  `lid` int(10) NOT NULL,\n  `text` text NOT NULL,\n  PRIMARY KEY  (`strid`)\n)  /*!40100 DEFAULT CHARACTER SET UTF8 */");
  return $ret;
}