mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-27 04:18:55 +00:00
Missing IDENTITY on phpbb_groups, thanks Martin
git-svn-id: file:///svn/phpbb/trunk@1493 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
8d24323734
commit
1f18ea3b16
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ CREATE TABLE [phpbb_forums] (
|
||||||
GO
|
GO
|
||||||
|
|
||||||
CREATE TABLE [phpbb_groups] (
|
CREATE TABLE [phpbb_groups] (
|
||||||
[group_id] [int] NOT NULL ,
|
[group_id] [int] IDENTITY (1, 1) NOT NULL ,
|
||||||
[group_type] [smallint] NULL ,
|
[group_type] [smallint] NULL ,
|
||||||
[group_name] [varchar] (50) NOT NULL ,
|
[group_name] [varchar] (50) NOT NULL ,
|
||||||
[group_description] [varchar] (255) NOT NULL ,
|
[group_description] [varchar] (255) NOT NULL ,
|
||||||
|
|
Loading…
Add table
Reference in a new issue