You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
3.9 KiB
55 lines
3.9 KiB
-- This script updates the databases structure before migrating the data from
|
|
-- version 1.8.7 (or 1.8.7.1) to version 1.8.8
|
|
-- it is intended as a standalone script, however, because of the multiple
|
|
-- databases related difficulties, it should be parsed by a PHP script in
|
|
-- order to connect to and update the right databases.
|
|
-- There is one line per query, allowing the PHP function file() to read
|
|
-- all lines separately into an array. The xxMAINxx-type markers are there
|
|
-- to tell the PHP script which database we're talking about.
|
|
-- By always using the keyword "TABLE" in the queries, we should be able
|
|
-- to retrieve and modify the table name from the PHP script if needed, which
|
|
-- will allow us to deal with the unique-database-type installations
|
|
--
|
|
-- This first part is for the main database
|
|
|
|
-- xxMAINxx
|
|
CREATE TABLE course_request (id int NOT NULL AUTO_INCREMENT, code varchar(40) NOT NULL, user_id int unsigned NOT NULL default '0', directory varchar(40) DEFAULT NULL, db_name varchar(40) DEFAULT NULL, course_language varchar(20) DEFAULT NULL, title varchar(250) DEFAULT NULL, description text, category_code varchar(40) DEFAULT NULL, tutor_name varchar(200) DEFAULT NULL, visual_code varchar(40) DEFAULT NULL, request_date datetime DEFAULT NULL, objetives text, target_audience text, status int unsigned NOT NULL default '0', info int unsigned NOT NULL default '0', PRIMARY KEY (id), UNIQUE KEY code (code));
|
|
|
|
ALTER TABLE settings_current DROP INDEX unique_setting;
|
|
ALTER TABLE settings_options DROP INDEX unique_setting_option;
|
|
ALTER TABLE settings_current ADD UNIQUE unique_setting (variable(110), subkey(110), category(110), access_url);
|
|
ALTER TABLE settings_options ADD UNIQUE unique_setting_option (variable(165), value(165));
|
|
ALTER TABLE settings_current CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
|
|
ALTER TABLE settings_options CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
|
|
|
|
ALTER TABLE user MODIFY COLUMN username VARCHAR(40) NOT NULL;
|
|
|
|
UPDATE settings_current SET variable='chamilo_database_version' WHERE variable='dokeos_database_version';
|
|
UPDATE settings_current SET selected_value = '1.8.8.12378' WHERE variable = 'chamilo_database_version';
|
|
|
|
ALTER TABLE sys_announcement ADD COLUMN access_url_id INT NOT NULL default 1;
|
|
ALTER TABLE sys_calendar ADD COLUMN access_url_id INT NOT NULL default 1;
|
|
|
|
INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES('users_copy_files', NULL, 'radio', 'Tools', 'true', 'AllowUsersCopyFilesTitle','AllowUsersCopyFilesComment', NULL,NULL, 1);
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('users_copy_files', 'true', 'Yes');
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('users_copy_files', 'false', 'No');
|
|
UPDATE settings_current SET selected_value='1' WHERE variable='allow_social_tool';
|
|
UPDATE settings_current SET selected_value='1' WHERE variable='allow_message_tool';
|
|
|
|
INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('course_validation', NULL, 'radio', 'Platform', 'false', 'EnableCourseValidation', 'EnableCourseValidationComment', NULL, NULL, 0);
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('course_validation', 'true', 'Yes');
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('course_validation', 'false', 'No');
|
|
UPDATE settings_current SET selected_value='1' WHERE variable='advanced_filemanager';
|
|
-- xxSTATSxx
|
|
ALTER TABLE track_e_exercices ADD COLUMN orig_lp_item_view_id INT NOT NULL DEFAULT 0;
|
|
|
|
|
|
-- xxUSERxx
|
|
|
|
-- xxCOURSExx
|
|
ALTER TABLE course_setting CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;
|
|
ALTER TABLE forum_forum ADD start_time DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00';
|
|
ALTER TABLE forum_forum ADD end_time DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00';
|
|
ALTER TABLE wiki_mailcue ADD session_id smallint DEFAULT 0;
|
|
|
|
|
|
|