mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01:00
Add a missing migration
Summary: This migration script is required for D9999, which has already landed. Test Plan: Ran `./bin/storage upgrade` and can log in again. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D10010
This commit is contained in:
parent
f4b05312cd
commit
458cf8c898
1 changed files with 34 additions and 0 deletions
34
resources/sql/autopatches/20140722.renameauth.php
Normal file
34
resources/sql/autopatches/20140722.renameauth.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
|
||||
$map = array(
|
||||
'PhabricatorAuthProviderOAuthAmazon' => 'PhabricatorAmazonAuthProvider',
|
||||
'PhabricatorAsanaAuthProvider' => 'PhabricatorAsanaAuthProvider',
|
||||
'PhabricatorAuthProviderOAuth1Bitbucket'
|
||||
=> 'PhabricatorBitbucketAuthProvider',
|
||||
'PhabricatorAuthProviderOAuthDisqus' => 'PhabricatorDisqusAuthProvider',
|
||||
'PhabricatorAuthProviderOAuthFacebook' => 'PhabricatorFacebookAuthProvider',
|
||||
'PhabricatorAuthProviderOAuthGitHub' => 'PhabricatorGitHubAuthProvider',
|
||||
'PhabricatorAuthProviderOAuthGoogle' => 'PhabricatorGoogleAuthProvider',
|
||||
'PhabricatorAuthProviderOAuth1JIRA' => 'PhabricatorJIRAAuthProvider',
|
||||
'PhabricatorAuthProviderLDAP' => 'PhabricatorLDAPAuthProvider',
|
||||
'PhabricatorAuthProviderPassword' => 'PhabricatorPasswordAuthProvider',
|
||||
'PhabricatorAuthProviderPersona' => 'PhabricatorPersonaAuthProvider',
|
||||
'PhabricatorAuthProviderOAuthTwitch' => 'PhabricatorTwitchAuthProvider',
|
||||
'PhabricatorAuthProviderOAuth1Twitter' => 'PhabricatorTwitterAuthProvider',
|
||||
'PhabricatorAuthProviderOAuthWordPress' => 'PhabricatorWordPressAuthProvider',
|
||||
);
|
||||
|
||||
echo "Migrating auth providers...\n";
|
||||
$table = new PhabricatorAuthProviderConfig();
|
||||
$conn_w = $table->establishConnection('w');
|
||||
|
||||
foreach (new LiskMigrationIterator($table) as $provider) {
|
||||
$provider_class = $provider->getProviderClass();
|
||||
|
||||
queryfx(
|
||||
$conn_w,
|
||||
'UPDATE %T SET providerClass = %s WHERE id = %d',
|
||||
$provider->getTableName(),
|
||||
idx($map, $provider_class, $provider_class),
|
||||
$provider->getID());
|
||||
}
|
Loading…
Reference in a new issue