mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
Enable presets
git-svn-id: file:///svn/phpbb/trunk@3290 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -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