diff --git a/main/install/dokeos_main.sql b/main/install/dokeos_main.sql index 36196a0196..af6f13c14d 100644 --- a/main/install/dokeos_main.sql +++ b/main/install/dokeos_main.sql @@ -649,8 +649,10 @@ VALUES ('course_create_active_tools','glossary','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Glossary', 0), ('course_create_active_tools','notebook','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Notebook', 0), ('advanced_filemanager',NULL,'radio','Platform','false','AdvancedFileManagerTitle','AdvancedFileManagerComment',NULL,NULL, 0), -('allow_reservation', NULL, 'radio', 'Tools', 'false', 'AllowReservationTitle', 'AllowReservationComment', NULL, NULL, 0); - +('allow_reservation', NULL, 'radio', 'Tools', 'false', 'AllowReservationTitle', 'AllowReservationComment', NULL, NULL, 0), +('profile','apikeys','checkbox','User','false','ProfileChangesTitle','ProfileChangesComment',NULL,'ApiKeys', 0), +('allow_message_tool', NULL, 'radio', 'Tools', 'false', 'AllowMessageToolTitle', 'AllowMessageToolComment', NULL, NULL,0), +('allow_social_tool', NULL, 'radio', 'Tools', 'false', 'AllowSocialToolTitle', 'AllowSocialToolComment', NULL, NULL, 0); UNLOCK TABLES; /*!40000 ALTER TABLE settings_current ENABLE KEYS */; @@ -804,8 +806,11 @@ VALUES ('advanced_filemanager','true','Yes'), ('advanced_filemanager','false','No'), ('allow_reservation', 'true', 'Yes'), -('allow_reservation', 'false', 'No'); - +('allow_reservation', 'false', 'No'), +('allow_message_tool', 'true', 'Yes'), +('allow_message_tool', 'false', 'No'), +('allow_social_tool', 'true', 'Yes'), +('allow_social_tool', 'false', 'No'); UNLOCK TABLES; /*!40000 ALTER TABLE settings_options ENABLE KEYS */; diff --git a/main/install/migrate-db-1.8.5-1.8.6-pre.sql b/main/install/migrate-db-1.8.5-1.8.6-pre.sql index 3f7df10c50..36d7251460 100644 --- a/main/install/migrate-db-1.8.5-1.8.6-pre.sql +++ b/main/install/migrate-db-1.8.5-1.8.6-pre.sql @@ -94,7 +94,13 @@ UPDATE settings_current SET access_url_changeable = 1 WHERE variable='show_tabs' UPDATE settings_current SET access_url_changeable = 1 WHERE variable='show_tabs' AND subkey='my_gradebook'; INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext) VALUES ('advanced_filemanager',NULL,'radio','Platform','false','AdvancedFileManagerTitle','AdvancedFileManagerComment',NULL,NULL); CREATE TABLE access_url_rel_course (access_url_id int unsigned NOT NULL, course_code char(40) NOT NULL, PRIMARY KEY (access_url_id, course_code)); - +INSERT INTO settings_current(variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('allow_message_tool', NULL, 'radio', 'Tools', 'false', 'AllowMessageToolTitle', 'AllowMessageToolComment', NULL, NULL,0); +INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_message_tool', 'true', 'Yes'); +INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_message_tool', 'false', 'No'); +INSERT INTO settings_current(variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('allow_social_tool', NULL, 'radio', 'Tools', 'false', 'AllowSocialToolTitle', 'AllowSocialToolComment', NULL, NULL, 0); +INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_social_tool', 'true', 'Yes'); +INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_social_tool', 'false', 'No'); + -- xxSTATSxx ALTER TABLE track_e_exercices ADD status varchar(20) NOT NULL default ''; ALTER TABLE track_e_exercices ADD data_tracking text NOT NULL default '';