mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
phpbb_groups needs IDENTITY ON/OFF with the re-addition of IDENTITY to the schema ....
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@2887 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
8fcd2ca56e
commit
53fccac865
1 changed files with 5 additions and 2 deletions
|
@ -106,9 +106,12 @@ SET IDENTITY_INSERT phpbb_ranks OFF;
|
|||
/*
|
||||
-- Groups
|
||||
*/
|
||||
SET IDENTITY_INSERT phpbb_groups ON;
|
||||
|
||||
INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES (1, 1, 'Anonymous', 'Personal User', '', 1);
|
||||
INSERT INTO phpbb_groups (group_id, group_type, group_name, group_description, group_moderator, group_single_user) VALUES (2, 1, 'Admin', 'Personal User', '', 1);
|
||||
|
||||
SET IDENTITY_INSERT phpbb_groups OFF;
|
||||
|
||||
/*
|
||||
-- User -> Group
|
||||
|
|
Loading…
Add table
Reference in a new issue