diff options
-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) ); |