diff options
Diffstat (limited to 'phpBB/install/schemas/oracle_schema.sql')
| -rw-r--r-- | phpBB/install/schemas/oracle_schema.sql | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/phpBB/install/schemas/oracle_schema.sql b/phpBB/install/schemas/oracle_schema.sql index 9c25af2512..9b516b4a56 100644 --- a/phpBB/install/schemas/oracle_schema.sql +++ b/phpBB/install/schemas/oracle_schema.sql @@ -605,7 +605,8 @@ CREATE TABLE phpbb_groups (  	group_receive_pm number(1) DEFAULT '0' NOT NULL,  	group_message_limit number(8) DEFAULT '0' NOT NULL,  	group_max_recipients number(8) DEFAULT '0' NOT NULL, -	group_legend number(1) DEFAULT '1' NOT NULL, +	group_legend number(8) DEFAULT '0' NOT NULL, +	group_teampage number(8) DEFAULT '0' NOT NULL,  	CONSTRAINT pk_phpbb_groups PRIMARY KEY (group_id)  )  / @@ -715,6 +716,8 @@ CREATE TABLE phpbb_log (  CREATE INDEX phpbb_log_log_type ON phpbb_log (log_type)  / +CREATE INDEX phpbb_log_log_time ON phpbb_log (log_time) +/  CREATE INDEX phpbb_log_forum_id ON phpbb_log (forum_id)  /  CREATE INDEX phpbb_log_topic_id ON phpbb_log (topic_id) | 
