diff options
Diffstat (limited to 'phpBB/install/schemas/mysql_schema.sql')
-rw-r--r-- | phpBB/install/schemas/mysql_schema.sql | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index d0bbb77ca6..44768c5ae2 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -34,6 +34,7 @@ CREATE TABLE phpbb_auth_groups ( ); +# -------------------------------------------------------- # # Table structure for table `phpbb_auth_options` # @@ -50,6 +51,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` # CREATE TABLE phpbb_auth_users ( |