aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/firebird_schema.sql
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-03-01 16:57:00 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2011-03-01 16:57:00 -0500
commit448df1cdf5d06e9457397ae439c04ad44084c2a9 (patch)
treee69a986e6910157ff8c1d1b51a267494e263c053 /phpBB/install/schemas/firebird_schema.sql
parent6c49f95b01c812144b16fdea74cc0841f354e810 (diff)
parent4ac8eaf9e3421f394136dc722542198b3048f4f8 (diff)
downloadforums-448df1cdf5d06e9457397ae439c04ad44084c2a9.tar
forums-448df1cdf5d06e9457397ae439c04ad44084c2a9.tar.gz
forums-448df1cdf5d06e9457397ae439c04ad44084c2a9.tar.bz2
forums-448df1cdf5d06e9457397ae439c04ad44084c2a9.tar.xz
forums-448df1cdf5d06e9457397ae439c04ad44084c2a9.zip
Merge branch 'ticket/9549' into develop
* ticket/9549: [ticket/9549] Display users in their primary group instead of their first group [ticket/9549] Change default value of "sort legend by group name" to false. [ticket/9549] Fix displaying empty groups [ticket/9549] Fix language strings. [ticket/9549] Only add group to legend/teampage when the checkbox is checked. [ticket/9549] New method move() to move a group more than 1 up/down. [ticket/9549] Fix some minor issues with descriptions and coding-guidelines. [ticket/9549] Throw an error when the given field-name is invalid. [ticket/9549] Make the class non static and extend delete_group function. [ticket/9549] Add template changes for subsilver2. [ticket/9549] Enhance teampage and legend functionality [ticket/9549] Add the module and files for the ACP. [ticket/9549] Update database with the new config values and columns [ticket/9549] Enhance teampage functionality with a new class, group_positions. Conflicts: phpBB/install/database_update.php
Diffstat (limited to 'phpBB/install/schemas/firebird_schema.sql')
-rw-r--r--phpBB/install/schemas/firebird_schema.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/install/schemas/firebird_schema.sql b/phpBB/install/schemas/firebird_schema.sql
index ab622e8fde..e16b4ab64c 100644
--- a/phpBB/install/schemas/firebird_schema.sql
+++ b/phpBB/install/schemas/firebird_schema.sql
@@ -444,7 +444,8 @@ CREATE TABLE phpbb_groups (
group_receive_pm INTEGER DEFAULT 0 NOT NULL,
group_message_limit INTEGER DEFAULT 0 NOT NULL,
group_max_recipients INTEGER DEFAULT 0 NOT NULL,
- group_legend INTEGER DEFAULT 1 NOT NULL
+ group_legend INTEGER DEFAULT 0 NOT NULL,
+ group_teampage INTEGER DEFAULT 0 NOT NULL
);;
ALTER TABLE phpbb_groups ADD PRIMARY KEY (group_id);;