summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-02-10 23:21:13 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-02-10 23:21:13 +0000
commit354c4388d0f274b45db77516a8364af2f56e66bc (patch)
tree0ba211d395ff74e8306191fdbf0373c67ca28c0c /admin
parent060f1df3dc2fc4ccd79d48d3bcc10fb28c11cc7d (diff)
downloadlanguages-354c4388d0f274b45db77516a8364af2f56e66bc.tar.gz
languages-354c4388d0f274b45db77516a8364af2f56e66bc.tar.bz2
languages-354c4388d0f274b45db77516a8364af2f56e66bc.zip
remove the source_id column and replace it with a language map in languages: i18n_content_translation_map
Diffstat (limited to 'admin')
-rw-r--r--admin/schema_inc.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php
index 6f7307f..34fc775 100644
--- a/admin/schema_inc.php
+++ b/admin/schema_inc.php
@@ -28,6 +28,12 @@ $tables = array(
version C(32) PRIMARY
"
+'i18n_content_translation_map' => "
+ content_id I4 NOTNULL,
+ translation_id I4 NOTNULL,
+ CONSTRAINT ', CONSTRAINT `liberty_translation_ref` FOREIGN KEY (`content_id`) REFERENCES `".BIT_DB_PREFIX."liberty_content`( `content_id` )'
+",
+
);
global $gBitInstaller;