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
-
Bleistivt Moderator
No, this is perfectly normal. These will reappear even if they have been executed successfully.
My themes: pure | minusbaseline - My plugins: CSSedit | HTMLedit | InfiniteScroll | BirthdayModule | [all] - PM me about customizations
VanillaSkins.com - Plugins, Themes and Graphics for Vanillaforums OS
5
Answers
No, this is perfectly normal. These will reappear even if they have been executed successfully.
My themes: pure | minusbaseline - My plugins: CSSedit | HTMLedit | InfiniteScroll | BirthdayModule | [all] - PM me about customizations
VanillaSkins.com - Plugins, Themes and Graphics for Vanillaforums OS
Got it, thanks. It just annoys me as it makes it seem as it there is a problem with my installation.