diff options
Diffstat (limited to 'phpBB/install/schemas/mysql_schema.sql')
-rw-r--r-- | phpBB/install/schemas/mysql_schema.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index 40417f45f5..9b4adac724 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -654,6 +654,19 @@ CREATE TABLE phpbb_topics_watch ( KEY notify_status (notify_status) ); +# -------------------------------------------------------- +# +# Table structure for table 'phpbb_ucp_modules' +# +CREATE TABLE phpbb_ucp_modules ( + module_id mediumint(8) DEFAULT '0' AUTO_INCREMENT NOT NULL, + module_name varchar(50) NOT NULL, + module_filename varchar(50) NOT NULL, + module_order mediumint(4) DEFAULT '0' NOT NULL, + KEY module_order (module_order), + PRIMARY KEY (module_id) +); + # -------------------------------------------------------- # |