1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-20 23:41:29 +02:00

[feature/oauth] Fix SQL error found in install

PHPBB3-11673
This commit is contained in:
Joseph Warner
2013-07-23 22:26:22 -04:00
parent dc050e7ece
commit da6a8787f8
9 changed files with 9 additions and 9 deletions

View File

@@ -97,7 +97,7 @@ CREATE TABLE phpbb_oauth_tokens (
provider varchar(255) DEFAULT '' NOT NULL,
oauth_token text NOT NULL,
KEY user_id (user_id),
KEY provider (oauth_provider)
KEY provider (provider)
) CHARACTER SET `utf8` COLLATE `utf8_bin`;