1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-16 05:34:01 +02:00

Just throwing this in ... dependencies still not complete ... the GUI and storage has caused me to do more "thinking" than I'd anticipated ... comments are welcome on what you see. Note also ALLOW/DENY/INHERIT have become YES/NO/UNSET

git-svn-id: file:///svn/phpbb/trunk@3772 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2003-04-01 00:06:11 +00:00
parent 3257af80f0
commit 5231006c03
6 changed files with 369 additions and 231 deletions

View File

@@ -45,11 +45,14 @@ CREATE TABLE phpbb_attach_desc (
# Table structure for table `phpbb_auth_dependencies`
#
CREATE TABLE phpbb_auth_dependencies (
auth_value varchar(20) NOT NULL default '',
dep_id tinyint(4) UNSIGNED NOT NULL auto_increment,
dep_name varchar(50) NOT NULL DEFAULT '',
auth_value text NOT NULL,
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)
forum_id text NOT NULL,
auth_deps text NOT NULL,
PRIMARY KEY (dep_id),
KEY dep_name (dep_name)
);