diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 22:26:22 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 22:26:34 -0400 |
commit | da6a8787f8443ea02f405a913aa5d0721034f819 (patch) | |
tree | f825081ff35ff6ea270f1aafe487cb2605f8f669 /phpBB/phpbb/db | |
parent | dc050e7ece74979b093d5249e4283e3959172b43 (diff) | |
download | forums-da6a8787f8443ea02f405a913aa5d0721034f819.tar forums-da6a8787f8443ea02f405a913aa5d0721034f819.tar.gz forums-da6a8787f8443ea02f405a913aa5d0721034f819.tar.bz2 forums-da6a8787f8443ea02f405a913aa5d0721034f819.tar.xz forums-da6a8787f8443ea02f405a913aa5d0721034f819.zip |
[feature/oauth] Fix SQL error found in install
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r-- | phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php b/phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php index 0d8e8858bb..febd399c98 100644 --- a/phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php +++ b/phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php @@ -27,7 +27,7 @@ class phpbb_db_migration_data_310_auth_provider_oauth extends phpbb_db_migration ), 'KEYS' => array( 'user_id' => array('INDEX', 'user_id'), - 'provider' => array('INDEX', 'oauth_provider'), + 'provider' => array('INDEX', 'provider'), ), ), $this->table_prefix . 'oauth_accounts' => array( |