diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-05-06 14:18:50 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-05-06 14:18:50 +0000 |
| commit | 8220c79a3908b24cd83492a5ba8271bde8fdd1c4 (patch) | |
| tree | e513abd39eb2880d6b66603b4c5951e60a0756b9 /admin | |
| parent | fa28c90665cb63b405cab1ebbcb0ac62010819f9 (diff) | |
| download | articles-8220c79a3908b24cd83492a5ba8271bde8fdd1c4.tar.gz articles-8220c79a3908b24cd83492a5ba8271bde8fdd1c4.tar.bz2 articles-8220c79a3908b24cd83492a5ba8271bde8fdd1c4.zip | |
remove duplicate topic_id column
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/schema_inc.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php index d4cc591..7af02e4 100644 --- a/admin/schema_inc.php +++ b/admin/schema_inc.php @@ -43,7 +43,6 @@ $tables = array( content_id I4 NOTNULL, description X, author_name C(250), - topic_id I4, image_attachment_id I4, publish_date I4, expire_date I4, @@ -56,8 +55,6 @@ $tables = array( , CONSTRAINT `articles_type_ref` FOREIGN KEY (`article_type_id`) REFERENCES `".BIT_DB_PREFIX."article_types` (`article_type_id`) , CONSTRAINT `articles_status` FOREIGN KEY (`status_id`) REFERENCES `".BIT_DB_PREFIX."article_status` (`status_id`)' ", - - ); global $gBitInstaller; @@ -65,7 +62,7 @@ global $gBitInstaller; $gBitInstaller->makePackageHomeable( ARTICLES_PKG_NAME ); foreach( array_keys( $tables ) AS $tableName ) { - $gBitInstaller->registerSchemaTable( ARTICLES_PKG_DIR, $tableName, $tables[$tableName] ); + $gBitInstaller->registerSchemaTable( ARTICLES_PKG_DIR, $tableName, $tables[$tableName] ); } $gBitInstaller->registerPackageInfo( ARTICLES_PKG_DIR, array( |
