mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 14:57:37 +02:00
- small schema fix
git-svn-id: file:///svn/phpbb/trunk@4953 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -41,7 +41,7 @@ CREATE TABLE phpbb_auth_groups (
|
|||||||
|
|
||||||
# Table: phpbb_auth_options
|
# Table: phpbb_auth_options
|
||||||
CREATE TABLE phpbb_auth_options (
|
CREATE TABLE phpbb_auth_options (
|
||||||
auth_option_id tinyint(4) NOT NULL auto_increment,
|
auth_option_id smallint(5) UNSIGNED NOT NULL auto_increment,
|
||||||
auth_option char(20) NOT NULL,
|
auth_option char(20) NOT NULL,
|
||||||
is_global tinyint(1) DEFAULT '0' NOT NULL,
|
is_global tinyint(1) DEFAULT '0' NOT NULL,
|
||||||
is_local tinyint(1) DEFAULT '0' NOT NULL,
|
is_local tinyint(1) DEFAULT '0' NOT NULL,
|
||||||
@@ -103,9 +103,8 @@ CREATE TABLE phpbb_bookmarks (
|
|||||||
topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
topic_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
order_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
order_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
KEY topic_id (topic_id),
|
KEY order_id (order_id),
|
||||||
KEY user_id (user_id),
|
KEY topic_user_id (topic_id, user_id)
|
||||||
KEY notify_status (order_id)
|
|
||||||
);
|
);
|
||||||
|
|
||||||
# Table: 'phpbb_bots'
|
# Table: 'phpbb_bots'
|
||||||
|
Reference in New Issue
Block a user