|
|
|
@ -165,6 +165,11 @@ INSERT INTO settings_current (variable, subkey, type, category, selected_value, |
|
|
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('enable_wami_record', 'true', 'Yes'); |
|
|
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('enable_wami_record', 'false', 'No'); |
|
|
|
|
|
|
|
|
|
INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('allow_public_certificates', NULL, 'radio', 'Course', 'false', 'AllowPublicCertificatesTitle', 'AllowPublicCertificatesComment', NULL, NULL, 1); |
|
|
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_public_certificates', 'true', 'Yes'); |
|
|
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('allow_public_certificates', 'false', 'No'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_default_weight', NULL, 'textfield', 'Gradebook', '100', 'GradebookDefaultWeightTitle', 'GradebookDefaultWeightComment', NULL, NULL, 1); |
|
|
|
|
INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('gradebook_default_grade_model_id', NULL, 'select', 'Gradebook', '', 'GradebookDefaultGradeModelTitle', 'GradebookDefaultGradeModelComment', NULL, NULL, 1); |
|
|
|
|
|
|
|
|
@ -228,7 +233,7 @@ ALTER TABLE course MODIFY COLUMN disk_quota bigint unsigned DEFAULT NULL; |
|
|
|
|
ALTER TABLE user MODIFY COLUMN username VARCHAR(100) NOT NULL; |
|
|
|
|
|
|
|
|
|
-- Do not move this query |
|
|
|
|
UPDATE settings_current SET selected_value = '1.9.0.18037' WHERE variable = 'chamilo_database_version'; |
|
|
|
|
UPDATE settings_current SET selected_value = '1.9.0.18042' WHERE variable = 'chamilo_database_version'; |
|
|
|
|
|
|
|
|
|
-- xxSTATSxx |
|
|
|
|
ALTER TABLE track_e_exercices ADD COLUMN questions_to_check TEXT NOT NULL DEFAULT ''; |
|
|
|
@ -257,4 +262,4 @@ ALTER TABLE quiz ADD COLUMN text_when_finished TEXT DEFAULT NULL; |
|
|
|
|
ALTER TABLE quiz ADD COLUMN display_category_name INT NOT NULL DEFAULT 1; |
|
|
|
|
ALTER TABLE quiz ADD COLUMN pass_percentage INT DEFAULT NULL; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
INSERT INTO course_setting(variable,value,category) VALUES ('allow_public_certificates', 0, 'certificates'); |