migrate-db-1.8.6.2-1.8.7-pre.sql 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. -- This script updates the databases structure before migrating the data from
  2. -- version 1.8.6.2 to version 1.8.7
  3. -- it is intended as a standalone script, however, because of the multiple
  4. -- databases related difficulties, it should be parsed by a PHP script in
  5. -- order to connect to and update the right databases.
  6. -- There is one line per query, allowing the PHP function file() to read
  7. -- all lines separately into an array. The xxMAINxx-type markers are there
  8. -- to tell the PHP script which database we're talking about.
  9. -- By always using the keyword "TABLE" in the queries, we should be able
  10. -- to retrieve and modify the table name from the PHP script if needed, which
  11. -- will allow us to deal with the unique-database-type installations
  12. --
  13. -- This first part is for the main database
  14. -- xxMAINxx
  15. ALTER TABLE user_friend RENAME TO user_rel_user;
  16. ALTER TABLE session_rel_user ADD COLUMN relation_type int NOT NULL default 0;
  17. ALTER TABLE course_rel_user ADD COLUMN relation_type int NOT NULL default 0;
  18. INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url, access_url_changeable) VALUES ('course_create_active_tools','notebook','checkbox','Tools','true','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Notebook',1,0);
  19. INSERT INTO course_module (name, link, image, `row`, `column`, position) VALUES ('notebook','notebook/index.php','notebook.gif',2,1,'basic');
  20. ALTER TABLE course DROP PRIMARY KEY , ADD UNIQUE KEY code (code);
  21. ALTER TABLE course ADD id int NOT NULL auto_increment PRIMARY KEY FIRST;
  22. CREATE TABLE block (id INT NOT NULL auto_increment, name VARCHAR(255) NULL, description TEXT NULL, path VARCHAR(255) NOT NULL, controller VARCHAR(100) NOT NULL, active TINYINT NOT NULL default 1, PRIMARY KEY(id));
  23. ALTER TABLE block ADD UNIQUE(path);
  24. INSERT INTO user_field(field_type, field_variable, field_display_text, field_visible, field_changeable) VALUES(1, 'dashboard', 'Dashboard', 0, 0);
  25. INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES('show_tabs', 'dashboard', 'checkbox', 'Platform', 'true', 'ShowTabsTitle','ShowTabsComment',NULL,'TabsDashboard', 1);
  26. INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES('use_users_timezone', 'timezones', 'radio', 'Timezones', 'true', 'UseUsersTimezoneTitle','UseUsersTimezoneComment',NULL,'Timezones', 1);
  27. INSERT INTO settings_options (variable, value, display_text) VALUES ('use_users_timezone', 'true', 'Yes');
  28. INSERT INTO settings_options (variable, value, display_text) VALUES ('use_users_timezone', 'false', 'No');
  29. INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES('timezone_value', 'timezones', 'select', 'Timezones', '', 'TimezoneValueTitle','TimezoneValueComment',NULL,'Timezones', 1);
  30. ALTER TABLE user_field CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00';
  31. ALTER TABLE course_field CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00';
  32. ALTER TABLE course_field_values CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00';
  33. ALTER TABLE session_field CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00';
  34. ALTER TABLE session_field_values CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00';
  35. ALTER TABLE user_field_options CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00';
  36. ALTER TABLE user_field_values CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00';
  37. ALTER TABLE access_url CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00';
  38. ALTER TABLE gradebook_certificate CHANGE date_certificate created_at DATETIME NOT NULL default '0000-00-00 00:00:00';
  39. ALTER TABLE gradebook_evaluation ADD COLUMN created_at DATETIME NOT NULL default '0000-00-00 00:00:00';
  40. UPDATE gradebook_evaluation SET created_at = FROM_UNIXTIME(date);
  41. ALTER TABLE gradebook_evaluation DROP date;
  42. ALTER TABLE gradebook_link ADD COLUMN created_at DATETIME NOT NULL default '0000-00-00 00:00:00';
  43. UPDATE gradebook_link SET created_at = FROM_UNIXTIME(date);
  44. ALTER TABLE gradebook_link DROP date;
  45. ALTER TABLE gradebook_linkeval_log ADD COLUMN created_at DATETIME NOT NULL default '0000-00-00 00:00:00';
  46. UPDATE gradebook_linkeval_log SET created_at = FROM_UNIXTIME(date_log);
  47. ALTER TABLE gradebook_linkeval_log DROP date_log;
  48. ALTER TABLE gradebook_result ADD COLUMN created_at DATETIME NOT NULL default '0000-00-00 00:00:00';
  49. UPDATE gradebook_result SET created_at = FROM_UNIXTIME(date);
  50. ALTER TABLE gradebook_result DROP date;
  51. ALTER TABLE gradebook_result_log CHANGE date_log created_at DATETIME NOT NULL default '0000-00-00 00:00:00';
  52. INSERT INTO user_field(field_type, field_variable, field_display_text, field_visible, field_changeable) VALUES(11, 'timezone', 'Timezone', 0, 0);
  53. INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('course_create_active_tools','attendances','checkbox','Tools','false','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'Attendances', 0);
  54. ALTER TABLE user_field_values CHANGE id id BIGINT NOT NULL AUTO_INCREMENT;
  55. ALTER TABLE user_field_values ADD INDEX (user_id, field_id);
  56. UPDATE settings_current SET selected_value = '1.8.7.11220' WHERE variable = 'dokeos_database_version';
  57. ALTER TABLE course_rel_user DROP PRIMARY KEY, ADD PRIMARY KEY (course_code, user_id, relation_type);
  58. ALTER TABLE session_rel_user DROP PRIMARY KEY, ADD PRIMARY KEY (id_session, id_user, relation_type);
  59. INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES ('course_create_active_tools','course_progress','checkbox','Tools','false','CourseCreateActiveToolsTitle','CourseCreateActiveToolsComment',NULL,'CourseProgress', 0);
  60. -- xxSTATSxx
  61. CREATE TABLE track_e_item_property(id int NOT NULL auto_increment PRIMARY KEY, course_id int NOT NULL, item_property_id int NOT NULL, title varchar(255), content text, progress int NOT NULL default 0, lastedit_date datetime NOT NULL default '0000-00-00 00:00:00', lastedit_user_id int NOT NULL, session_id int NOT NULL default 0);
  62. ALTER TABLE track_e_item_property ADD INDEX (course_id, item_property_id, session_id);
  63. ALTER TABLE track_e_access ADD access_session_id INT NOT NULL DEFAULT 0;
  64. ALTER TABLE track_e_access ADD INDEX (access_session_id);
  65. ALTER TABLE track_e_course_access ADD session_id INT NOT NULL DEFAULT 0;
  66. ALTER TABLE track_e_course_access ADD INDEX (session_id);
  67. ALTER TABLE track_e_downloads ADD down_session_id INT NOT NULL DEFAULT 0;
  68. ALTER TABLE track_e_downloads ADD INDEX (down_session_id);
  69. ALTER TABLE track_e_links ADD links_session_id INT NOT NULL DEFAULT 0;
  70. ALTER TABLE track_e_links ADD INDEX (links_session_id);
  71. ALTER TABLE track_e_uploads ADD upload_session_id INT NOT NULL DEFAULT 0;
  72. ALTER TABLE track_e_uploads ADD INDEX (upload_session_id);
  73. ALTER TABLE track_e_online ADD session_id INT NOT NULL DEFAULT 0;
  74. ALTER TABLE track_e_online ADD INDEX (session_id);
  75. ALTER TABLE track_e_attempt ADD session_id INT NOT NULL DEFAULT 0;
  76. ALTER TABLE track_e_attempt ADD INDEX (session_id);
  77. ALTER TABLE track_e_attempt_recording ADD session_id INT NOT NULL DEFAULT 0;
  78. ALTER TABLE track_e_attempt_recording ADD INDEX (question_id);
  79. ALTER TABLE track_e_attempt_recording ADD INDEX (session_id);
  80. ALTER TABLE track_e_online ADD COLUMN access_url_id INT NOT NULL DEFAULT 1;
  81. -- xxUSERxx
  82. -- xxCOURSExx
  83. INSERT INTO tool(name,link,image,visibility,admin,address,added_tool,target,category) VALUES ('attendance','attendance/index.php','attendance.gif',0,'0','squaregrey.gif',0,'_self','authoring');
  84. ALTER TABLE course_description ADD COLUMN progress INT NOT NULL DEFAULT 0 AFTER description_type;
  85. ALTER TABLE item_property ADD id int NOT NULL auto_increment PRIMARY KEY FIRST;
  86. UPDATE course_description SET description_type = (SELECT IF(description_type>7,description_type+1,description_type)); -- update description_type field for using thematic advance with description_type = 8
  87. CREATE TABLE attendance_calendar (id int NOT NULL auto_increment, attendance_id int NOT NULL, date_time datetime NOT NULL default '0000-00-00 00:00:00', done_attendance tinyint(3) NOT NULL default 0, PRIMARY KEY(id));
  88. ALTER TABLE attendance_calendar ADD INDEX(attendance_id);
  89. ALTER TABLE attendance_calendar ADD INDEX(done_attendance);
  90. CREATE TABLE attendance_sheet (user_id int NOT NULL, attendance_calendar_id int NOT NULL, presence tinyint(3) NOT NULL DEFAULT 0, PRIMARY KEY(user_id, attendance_calendar_id));
  91. ALTER TABLE attendance_sheet ADD INDEX(presence);
  92. CREATE TABLE attendance_result (id int NOT NULL auto_increment PRIMARY KEY, user_id int NOT NULL, attendance_id int NOT NULL, score int NOT NULL DEFAULT 0);
  93. ALTER TABLE attendance_result ADD INDEX(attendance_id);
  94. ALTER TABLE attendance_result ADD INDEX(user_id);
  95. CREATE TABLE attendance (id int NOT NULL auto_increment PRIMARY KEY, name text NOT NULL, description TEXT NULL, active tinyint(3) NOT NULL default 1, attendance_qualify_title varchar(255) NULL, attendance_qualify_max int NOT NULL default 0, attendance_weight float(6,2) NOT NULL default '0.0', session_id int NOT NULL default 0);
  96. ALTER TABLE attendance ADD INDEX(session_id);
  97. ALTER TABLE attendance ADD INDEX(active);
  98. ALTER TABLE lp_view ADD session_id INT NOT NULL DEFAULT 0;
  99. ALTER TABLE lp_view ADD INDEX(session_id);
  100. INSERT INTO course_setting (variable,value,category) VALUES ('allow_user_view_user_list',1,'user');
  101. ALTER TABLE tool_intro ADD COLUMN session_id INT NOT NULL DEFAULT 0 AFTER intro_text, DROP PRIMARY KEY, ADD PRIMARY KEY USING BTREE(id, session_id);
  102. CREATE TABLE thematic (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, title VARCHAR( 255 ) NOT NULL, content TEXT NULL, display_order int unsigned not null default 0, active TINYINT NOT NULL default 0, session_id INT NOT NULL DEFAULT 0);
  103. ALTER TABLE thematic ADD INDEX (active, session_id);
  104. CREATE TABLE thematic_plan (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, thematic_id INT NOT NULL, title VARCHAR(255) NOT NULL, description TEXT NULL, description_type` INT NOT NULL);
  105. ALTER TABLE thematic_plan ADD INDEX (thematic_id, description_type);
  106. CREATE TABLE thematic_advance (id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, thematic_id INT NOT NULL, attendance_id INT NOT NULL DEFAULT 0, content TEXT NOT NULL, start_date DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', duration INT NOT NULL DEFAULT 0, done_advance tinyint NOT NULL DEFAULT 0);
  107. ALTER TABLE thematic_advance ADD INDEX (thematic_id);
  108. INSERT INTO course_setting (variable,value,category) VALUES ('display_info_advance_inside_homecourse',1,'thematic_advance');
  109. INSERT INTO tool(name, link, image, visibility, admin, address, added_tool, target, category) VALUES ('course_progress','course_progress/index.php','course_progress.gif',0,'0','squaregrey.gif',0,'_self','authoring');
  110. ALTER TABLE lp ADD prerequisite int unsigned NOT NULL DEFAULT 0;
  111. ALTER TABLE student_publication MODIFY COLUMN description TEXT DEFAULT NULL;