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:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user