aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration/data
diff options
context:
space:
mode:
authorJoseph Warner <hardolaf@hardolaf.com>2013-07-23 22:15:53 -0400
committerJoseph Warner <hardolaf@hardolaf.com>2013-07-23 22:16:09 -0400
commite60f4bc88b32465b1d31049f2eb14b1793747dc6 (patch)
tree80918d17ebe165c57a17fc6446b24d0e1ec9916b /phpBB/phpbb/db/migration/data
parent8d568dae7116ac05eda593835d99e6e6f22dc9f7 (diff)
downloadforums-e60f4bc88b32465b1d31049f2eb14b1793747dc6.tar
forums-e60f4bc88b32465b1d31049f2eb14b1793747dc6.tar.gz
forums-e60f4bc88b32465b1d31049f2eb14b1793747dc6.tar.bz2
forums-e60f4bc88b32465b1d31049f2eb14b1793747dc6.tar.xz
forums-e60f4bc88b32465b1d31049f2eb14b1793747dc6.zip
[feature/oauth] Finalize schema changes
PHPBB3-11673
Diffstat (limited to 'phpBB/phpbb/db/migration/data')
-rw-r--r--phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php4
1 files changed, 2 insertions, 2 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 86e446e48e..5a7f9b5c8d 100644
--- a/phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php
+++ b/phpBB/phpbb/db/migration/data/310/auth_provider_oauth.php
@@ -18,7 +18,7 @@ class phpbb_db_migration_data_310_auth_provider_oauth extends phpbb_db_migration
{
return array(
'add_tables' => array(
- $this->table_prefix . 'auth_provider_oauth_token_storage' => array(
+ $this->table_prefix . 'oauth_token' => array(
'COLUMNS' => array(
'user_id' => array('UINT', 0), // phpbb_users.user_id
'session_id' => array('CHAR:32', ''), // phpbb_sessions.session_id used only when user_id not set
@@ -30,7 +30,7 @@ class phpbb_db_migration_data_310_auth_provider_oauth extends phpbb_db_migration
'oauth_provider' => array('INDEX', 'oauth_provider'),
),
),
- $this->table_prefix . 'auth_provider_oauth_account_assoc' => array(
+ $this->table_prefix . 'oauth_accounts' => array(
'COLUMNS' => array(
'user_id' => array('UINT', 0),
'oauth_provider' => array('VCHAR'),