1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-08 01:36:57 +02:00

[feature/oauth] Forgot to update schema files

PHPBB3-11673
This commit is contained in:
Joseph Warner
2013-07-31 16:50:19 -04:00
parent 3264a7ece5
commit c33f970386
6 changed files with 7 additions and 7 deletions

View File

@@ -173,8 +173,8 @@ CREATE TABLE [phpbb_oauth_tokens] (
[user_id] [int] DEFAULT (0) NOT NULL ,
[session_id] [char] (32) DEFAULT ('') NOT NULL ,
[provider] [varchar] (255) DEFAULT ('') NOT NULL ,
[oauth_token] [varchar] (4000) DEFAULT ('') NOT NULL
) ON [PRIMARY]
[oauth_token] [text] DEFAULT ('') NOT NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
CREATE INDEX [user_id] ON [phpbb_oauth_tokens]([user_id]) ON [PRIMARY]