diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-09 15:12:11 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-01-09 15:12:11 +0000 |
commit | 05bc60b26d8d703141e0af6bcd172827f989314c (patch) | |
tree | c42d90fde8f29ef30cc73f73cc866a6801a8c7fe /phpBB/install/schemas/mysql_schema.sql | |
parent | 6af4750b4c932a1dbf2abdd7937afb1e1f432047 (diff) | |
download | forums-05bc60b26d8d703141e0af6bcd172827f989314c.tar forums-05bc60b26d8d703141e0af6bcd172827f989314c.tar.gz forums-05bc60b26d8d703141e0af6bcd172827f989314c.tar.bz2 forums-05bc60b26d8d703141e0af6bcd172827f989314c.tar.xz forums-05bc60b26d8d703141e0af6bcd172827f989314c.zip |
Enable presets
git-svn-id: file:///svn/phpbb/trunk@3290 89ea8834-ac86-4346-8a33-228a782c2dd0
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 ( |