diff --git a/main/install/migrate-db-1.6.x-1.8.0-pre.sql b/main/install/migrate-db-1.6.x-1.8.0-pre.sql index 1d670637e4..c8f9f3d477 100644 --- a/main/install/migrate-db-1.6.x-1.8.0-pre.sql +++ b/main/install/migrate-db-1.6.x-1.8.0-pre.sql @@ -66,22 +66,22 @@ UPDATE sys_announcement SET visible_guest = 1 WHERE visible_guest_temp = 'true'; ALTER TABLE sys_announcement ADD lang varchar(70) NULL; -- update contents of the main db tables -UPDATE TABLE settings_current SET selected_value = 'activity' WHERE variable='homepage_view'; -UPDATE TABLE settings_current SET subkey = 'world', type = 'checkbox', subkeytext = 'ShowOnlineWorld' WHERE variable='showonline'; +UPDATE settings_current SET selected_value = 'activity' WHERE variable='homepage_view'; +UPDATE settings_current SET subkey = 'world', type = 'checkbox', subkeytext = 'ShowOnlineWorld' WHERE variable='showonline'; INSERT INTO settings_current(variable,subkey,type,category,selected_value,title,comment,scope,subkeytext) VALUES ('showonline','users','checkbox','Platform','true','ShowOnlineTitle','ShowOnlineComment',NULL,'ShowOnlineUsers'); INSERT INTO settings_current(variable,subkey,type,category,selected_value,title,comment,scope,subkeytext) VALUES ('showonline','course','checkbox','Platform','true','ShowOnlineTitle','ShowOnlineComment',NULL,'ShowOnlineCourse'); INSERT INTO settings_current(variable,subkey,type,category,selected_value,title,comment,scope,subkeytext) VALUES ('profile','language','checkbox','User','true','ProfileChangesTitle','ProfileChangesComment',NULL,'Language'); INSERT INTO settings_current(variable,subkey,type,category,selected_value,title,comment,scope,subkeytext) VALUES ('registration','language','checkbox','User','true','RegistrationRequiredFormsTitle','RegistrationRequiredFormsComment',NULL,'Language'); --- UPDATE TABLE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='announcements'; --- UPDATE TABLE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='forums'; --- UPDATE TABLE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='dropbox'; --- UPDATE TABLE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='quiz'; --- UPDATE TABLE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='users'; --- UPDATE TABLE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='groups'; --- UPDATE TABLE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='chat'; --- UPDATE TABLE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='online_conference'; --- UPDATE TABLE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='student_publications'; --- UPDATE TABLE settings_current SET selected_value = 'true' WHERE variable='use_document_title'; +-- UPDATE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='announcements'; +-- UPDATE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='forums'; +-- UPDATE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='dropbox'; +-- UPDATE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='quiz'; +-- UPDATE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='users'; +-- UPDATE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='groups'; +-- UPDATE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='chat'; +-- UPDATE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='online_conference'; +-- UPDATE settings_current SET selected_value = 'true' WHERE variable='course_create_active_tools' AND subkey='student_publications'; +-- UPDATE settings_current SET selected_value = 'true' WHERE variable='use_document_title'; INSERT INTO settings_current(variable,subkey,type,category,selected_value,title,comment,scope,subkeytext) VALUES ('student_view_enabled',NULL,'radio','Platform','true','StudentViewEnabledTitle','StudentViewEnabledComment',NULL,NULL); INSERT INTO settings_current(variable,subkey,type,category,selected_value,title,comment,scope,subkeytext) VALUES ('show_navigation_menu',NULL,'radio','Course','false','ShowNavigationMenuTitle','ShowNavigationMenuComment',NULL,NULL); INSERT INTO settings_current(variable,subkey,type,category,selected_value,title,comment,scope,subkeytext) VALUES ('enable_tool_introduction',NULL,'radio','course','false','EnableToolIntroductionTitle','EnableToolIntroductionComment',NULL,NULL);