You are here

function i18nstrings_update_1 in Internationalization 5

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

Change table name for smooth 6.x update:

File

experimental/i18nstrings.install, line 24

Code

function i18nstrings_update_1() {
  $ret = array();
  $ret[] = update_sql("RENAME TABLE {i18n_strings} TO {i18n_locale_strings}");
  return $ret;
}