1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-25 08:51:50 +02:00

More work on plugin.xml support

This commit is contained in:
mcfly
2008-01-27 01:34:59 +00:00
parent c0c2be8a40
commit 467f1d4be5
4 changed files with 189 additions and 37 deletions

View File

@@ -1,4 +1,4 @@
CREATE TABLE forum (
CREATE TABLE forum (
forum_id int(10) unsigned NOT NULL auto_increment,
forum_name varchar(250) NOT NULL default '',
forum_description text NOT NULL,
@@ -14,7 +14,7 @@ CREATE TABLE forum (
forum_order int(10) unsigned NOT NULL default '0',
forum_postclass tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (forum_id)
) TYPE=MyISAM AUTO_INCREMENT=1
) TYPE=MyISAM;
CREATE TABLE forum_t (
thread_id int(10) unsigned NOT NULL auto_increment,
@@ -35,5 +35,5 @@ CREATE TABLE forum_t (
KEY thread_parent (thread_parent),
KEY thread_datestamp (thread_datestamp),
KEY thread_forum_id (thread_forum_id)
) TYPE=MyISAM AUTO_INCREMENT=1;
) TYPE=MyISAM;