diff options
Diffstat (limited to 'phpBB/install/schemas/mysql_41_schema.sql')
| -rw-r--r-- | phpBB/install/schemas/mysql_41_schema.sql | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/phpBB/install/schemas/mysql_41_schema.sql b/phpBB/install/schemas/mysql_41_schema.sql index 3a3b4ab2fd..a4b34c05db 100644 --- a/phpBB/install/schemas/mysql_41_schema.sql +++ b/phpBB/install/schemas/mysql_41_schema.sql @@ -316,7 +316,8 @@ CREATE TABLE phpbb_groups (  	group_receive_pm tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,  	group_message_limit mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,  	group_max_recipients mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, -	group_legend tinyint(1) UNSIGNED DEFAULT '1' NOT NULL, +	group_legend mediumint(8) UNSIGNED DEFAULT '0' NOT NULL, +	group_teampage mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,  	PRIMARY KEY (group_id),  	KEY group_legend_name (group_legend, group_name)  ) CHARACTER SET `utf8` COLLATE `utf8_bin`; @@ -362,6 +363,7 @@ CREATE TABLE phpbb_log (  	log_data mediumtext NOT NULL,  	PRIMARY KEY (log_id),  	KEY log_type (log_type), +	KEY log_time (log_time),  	KEY forum_id (forum_id),  	KEY topic_id (topic_id),  	KEY reportee_id (reportee_id), | 
