1
0
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:
Paul S. Owen
2003-01-09 15:12:11 +00:00
parent 6af4750b4c
commit 05bc60b26d
3 changed files with 189 additions and 29 deletions

View File

@@ -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`