Database Structure Upgrades

The following structure changes are required for your database.

update GDN_Role Role
set Type = 'applicant'
where RoleID = '4';

update GDN_Role Role
set Type = 'member'
where RoleID in ('8', '33');

update GDN_Role Role
set Type = 'unconfirmed'
where RoleID = '3';

update GDN_User User
set Permissions = ''
where Permissions <> '';

update GDN_UserAuthenticationProvider UserAuthenticationProvider
set AuthenticationSchemeAlias = 'GooglePlus'
where AuthenticationSchemeAlias = 'Google+';

After running the "Run function & data script" function it says "The structure was successfully executed." However, after scanning the structure again it gives me the same update GND_ messages. Do I have to do this manually in the database?

I am using:
Vanilla 2.2
PHP 5.6 (Single php.ini) with '--enable-mbstring'
All plugin were disabled before the upgrade and are disabled at this time.

Best Answer

Answers

Sign In or Register to comment.