diff options
-rw-r--r-- | phpBB/install/schemas/mysql_schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index 31c221f624..182cb32e4f 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -56,7 +56,7 @@ CREATE TABLE phpbb_auth_roles ( role_id mediumint(8) UNSIGNED NOT NULL auto_increment, role_name varchar(50) DEFAULT '' NOT NULL, role_type varchar(10) DEFAULT '' NOT NULL, - role_group_ids varchar(255) UNSIGNED DEFAULT '' NOT NULL, + role_group_ids varchar(255) DEFAULT '' NOT NULL, PRIMARY KEY (role_id), KEY role_type (role_type) ); |