summaryrefslogtreecommitdiff
path: root/admin
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-05-06 14:18:50 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-05-06 14:18:50 +0000
commit8220c79a3908b24cd83492a5ba8271bde8fdd1c4 (patch)
treee513abd39eb2880d6b66603b4c5951e60a0756b9 /admin
parentfa28c90665cb63b405cab1ebbcb0ac62010819f9 (diff)
downloadarticles-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.php5
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(