1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-15 13:24:10 +02:00

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`
#
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)
);