|
|
|
@ -20,6 +20,7 @@ ALTER TABLE course_rel_user ADD COLUMN relation_type int NOT NULL default 0; |
|
|
|
|
|
|
|
|
|
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); |
|
|
|
|
INSERT INTO course_module (name, link, image, `row`, `column`, position) VALUES ('notebook','notebook/index.php','notebook.gif',2,1,'basic'); |
|
|
|
|
UPDATE settings_current SET selected_value = '1.8.7.10308' WHERE variable = 'dokeos_database_version'; |
|
|
|
|
ALTER TABLE course DROP PRIMARY KEY , ADD UNIQUE KEY code (code); |
|
|
|
|
ALTER TABLE course ADD id int NOT NULL auto_increment PRIMARY KEY FIRST; |
|
|
|
|
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)); |
|
|
|
@ -27,20 +28,6 @@ ALTER TABLE block ADD UNIQUE(path); |
|
|
|
|
INSERT INTO user_field(field_type, field_variable, field_display_text, field_visible, field_changeable) VALUES(1, 'dashboard', 'dashboard', 0, 0); |
|
|
|
|
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); |
|
|
|
|
|
|
|
|
|
INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES('users_can_change_timezone', 'timezones', 'radio', 'Timezones', 'true', 'AllowUsersTimezoneTitle','AllowUsersTimezoneComment',NULL,'Timezones', 1); |
|
|
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('users_can_change_timezone', 'true', 'Yes'); |
|
|
|
|
INSERT INTO settings_options (variable, value, display_text) VALUES ('users_can_change_timezone', 'false', 'No'); |
|
|
|
|
INSERT INTO settings_current (variable, subkey, type, category, selected_value, title, comment, scope, subkeytext, access_url_changeable) VALUES('timezone_value', 'timezones', 'select', 'Timezones', 'UTC', 'TimezoneValueTitle','TimezoneValueComment',NULL,'Timezones', 1); |
|
|
|
|
|
|
|
|
|
ALTER TABLE user_field CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00'; |
|
|
|
|
ALTER TABLE course_field CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00'; |
|
|
|
|
ALTER TABLE course_field_values CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00'; |
|
|
|
|
ALTER TABLE session_field CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00'; |
|
|
|
|
ALTER TABLE session_field_values CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00'; |
|
|
|
|
ALTER TABLE user_field_options CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00'; |
|
|
|
|
ALTER TABLE user_field_values CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00'; |
|
|
|
|
ALTER TABLE access_url CHANGE tms tms DATETIME NOT NULL default '0000-00-00 00:00:00'; |
|
|
|
|
UPDATE settings_current SET selected_value = '1.8.7.10365' WHERE variable = 'dokeos_database_version'; |
|
|
|
|
|
|
|
|
|
-- xxSTATSxx |
|
|
|
|
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); |
|
|
|
@ -63,4 +50,4 @@ ALTER TABLE attendance_result ADD INDEX(attendance_id); |
|
|
|
|
ALTER TABLE attendance_result ADD INDEX(user_id); |
|
|
|
|
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); |
|
|
|
|
ALTER TABLE attendance ADD INDEX(session_id); |
|
|
|
|
ALTER TABLE attendance ADD INDEX(active); |
|
|
|
|
ALTER TABLE attendance ADD INDEX(active); |