diff options
| -rw-r--r-- | admin/schema_inc.php | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php index 782ef8c..d4570f2 100644 --- a/admin/schema_inc.php +++ b/admin/schema_inc.php @@ -3,29 +3,30 @@ $tables = array( 'i18n_languages' => " - lang_code C(32) PRIMARY, - native_name C(255), - english_name C(255), - is_disabled C(1) + lang_code C(32) PRIMARY, + native_name C(255), + english_name C(255), + is_disabled C(1), + right_to_left C(1) ", 'i18n_masters' => " - source_hash C(32) PRIMARY, - package C(100), - created I8 NOTNULL, - source X NOTNULL + source_hash C(32) PRIMARY, + package C(100), + created I8 NOTNULL, + source X NOTNULL ", 'i18n_strings' => " - source_hash C(32) PRIMARY, - lang_code C(32) PRIMARY, - last_modified I8 NOTNULL, - `tran` X NOTNULL + source_hash C(32) PRIMARY, + lang_code C(32) PRIMARY, + last_modified I8 NOTNULL, + `tran` X NOTNULL ", 'i18n_version_map' => " - source_hash C(32) PRIMARY, - version C(32) PRIMARY + source_hash C(32) PRIMARY, + version C(32) PRIMARY ", 'i18n_content_translation_map' => " |
