mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
Ok, it's that time again! Well, in preparation for the release of 2.0.2, I
have created the update file. The update has a schema change in the phpbb_groups table; the group id is now auto-increment. This should solve a problem in upgrade.php, as well as make some scripts a little more efficient. The update script will take care of the required changes, as none of the PHP files mentioned above will work without the group_id set as auto_increment. That's all for now! dougk_ff7 git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@2796 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -89,7 +89,7 @@ CREATE TABLE [phpbb_forums] (
|
||||
GO
|
||||
|
||||
CREATE TABLE [phpbb_groups] (
|
||||
[group_id] [int] NOT NULL ,
|
||||
[group_id] [int] IDENTITY (1, 1) NOT NULL ,
|
||||
[group_type] [smallint] NULL ,
|
||||
[group_name] [varchar] (50) NOT NULL ,
|
||||
[group_description] [varchar] (255) NOT NULL ,
|
||||
|
Reference in New Issue
Block a user