mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 17:27:16 +02:00
Enable presets
git-svn-id: file:///svn/phpbb/trunk@3290 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -116,6 +116,7 @@ INSERT INTO phpbb_auth_options (auth_value, is_local) VALUES ('f_rate', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_local) VALUES ('f_print', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_local) VALUES ('f_ignoreflood', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_local) VALUES ('f_ignorequeue', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_local) VALUES ('f_viewonline', 1);
|
||||
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_', 1, 1);
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_edit', 1, 1);
|
||||
@@ -127,6 +128,7 @@ INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_merg
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_approve', 1, 1);
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_unrate', 1, 1);
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_auth', 1, 1);
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_local, is_global) VALUES ('m_ip', 1, 1);
|
||||
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_value, is_global) VALUES ('a_server', 1);
|
||||
|
@@ -34,6 +34,7 @@ CREATE TABLE phpbb_auth_groups (
|
||||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table `phpbb_auth_options`
|
||||
#
|
||||
@@ -48,6 +49,21 @@ CREATE TABLE phpbb_auth_options (
|
||||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table phpbb_auth_presets
|
||||
#
|
||||
CREATE TABLE phpbb_auth_presets (
|
||||
preset_id tinyint(4) NOT NULL auto_increment,
|
||||
preset_name varchar(50) NOT NULL,
|
||||
preset_user_id mediumint(5) UNSIGNED NOT NULL,
|
||||
preset_type varchar(2) NOT NULL,
|
||||
preset_data text,
|
||||
PRIMARY KEY (preset_id),
|
||||
KEY preset_type (preset_type)
|
||||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table `phpbb_auth_users`
|
||||
|
Reference in New Issue
Block a user