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:
Paul S. Owen 2003-08-22 22:51:12 +00:00
parent 28b604b69c
commit 115c8d4e70

View file

@ -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'