More updates, auth_dependencies latest layout ... still may change

git-svn-id: file:///svn/phpbb/trunk@3752 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-03-30 14:27:17 +00:00
parent f302d5ea93
commit eabafe4734

View file

@ -45,9 +45,11 @@ CREATE TABLE phpbb_attach_desc (
# Table structure for table `phpbb_auth_dependencies` # Table structure for table `phpbb_auth_dependencies`
# #
CREATE TABLE phpbb_auth_dependencies ( CREATE TABLE phpbb_auth_dependencies (
auth_option_id smallint(5) unsigned NOT NULL default '0', auth_value varchar(20) NOT NULL default '',
auth_depend text, auth_allow tinyint(1) NOT NULL default '2',
PRIMARY KEY (auth_option_id) forum_id int(11) NOT NULL default '0',
auth_deps text NOT NULL default '',
PRIMARY KEY (auth_value)
); );