diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-30 14:27:17 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-03-30 14:27:17 +0000 |
commit | eabafe47348e0d61bf3b5e58fdf5e7aa5f38d81b (patch) | |
tree | 6c0ae61e21f6f28ed8e01229b130a85a28cf1553 /phpBB/install | |
parent | f302d5ea939e0143c9a0e413223e85388b946040 (diff) | |
download | forums-eabafe47348e0d61bf3b5e58fdf5e7aa5f38d81b.tar forums-eabafe47348e0d61bf3b5e58fdf5e7aa5f38d81b.tar.gz forums-eabafe47348e0d61bf3b5e58fdf5e7aa5f38d81b.tar.bz2 forums-eabafe47348e0d61bf3b5e58fdf5e7aa5f38d81b.tar.xz forums-eabafe47348e0d61bf3b5e58fdf5e7aa5f38d81b.zip |
More updates, auth_dependencies latest layout ... still may change
git-svn-id: file:///svn/phpbb/trunk@3752 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/schemas/mysql_schema.sql | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index c3f36dfc9a..d367313341 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -45,9 +45,11 @@ CREATE TABLE phpbb_attach_desc ( # Table structure for table `phpbb_auth_dependencies` # CREATE TABLE phpbb_auth_dependencies ( - auth_option_id smallint(5) unsigned NOT NULL default '0', - auth_depend text, - PRIMARY KEY (auth_option_id) + auth_value varchar(20) NOT NULL default '', + auth_allow tinyint(1) NOT NULL default '2', + forum_id int(11) NOT NULL default '0', + auth_deps text NOT NULL default '', + PRIMARY KEY (auth_value) ); |