mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Dump group moderator table, add field to user_group table
git-svn-id: file:///svn/phpbb/trunk@4419 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
28b604b69c
commit
115c8d4e70
1 changed files with 3 additions and 7 deletions
|
@ -216,12 +216,6 @@ CREATE TABLE phpbb_groups (
|
||||||
PRIMARY KEY (group_id)
|
PRIMARY KEY (group_id)
|
||||||
);
|
);
|
||||||
|
|
||||||
# Table: 'phpbb_groups_moderator'
|
|
||||||
CREATE TABLE phpbb_groups_moderator (
|
|
||||||
group_id mediumint(8) NOT NULL,
|
|
||||||
user_id mediumint(8) NOT NULL
|
|
||||||
);
|
|
||||||
|
|
||||||
# Table: 'phpbb_icons'
|
# Table: 'phpbb_icons'
|
||||||
CREATE TABLE phpbb_icons (
|
CREATE TABLE phpbb_icons (
|
||||||
icons_id tinyint(4) UNSIGNED NOT NULL auto_increment,
|
icons_id tinyint(4) UNSIGNED NOT NULL auto_increment,
|
||||||
|
@ -634,9 +628,11 @@ CREATE TABLE phpbb_ucp_modules (
|
||||||
CREATE TABLE phpbb_user_group (
|
CREATE TABLE phpbb_user_group (
|
||||||
group_id mediumint(8) DEFAULT '0' NOT NULL,
|
group_id mediumint(8) DEFAULT '0' NOT NULL,
|
||||||
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
user_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
|
group_leader tinyint(1) DEFAULT '0' NOT NULL,
|
||||||
user_pending tinyint(1),
|
user_pending tinyint(1),
|
||||||
KEY group_id (group_id),
|
KEY group_id (group_id),
|
||||||
KEY user_id (user_id)
|
KEY user_id (user_id),
|
||||||
|
KEY group_leader (group_leader)
|
||||||
);
|
);
|
||||||
|
|
||||||
# Table: 'phpbb_users'
|
# Table: 'phpbb_users'
|
||||||
|
|
Loading…
Add table
Reference in a new issue