remove old readme
[atutor.git] / docs / install / db / atutor_upgrade_1.5.4_to_1.5.5.sql
1 ###############################################################
2 # Database upgrade SQL from ATutor 1.5.4 to ATutor 1.5.5
3 ###############################################################
4
5
6 ## remove login field - #3032
7 ALTER TABLE `forums_threads` DROP `login`;
8
9 ## refresh test issue - #2362
10 ALTER TABLE `tests_questions_assoc` DROP INDEX `test_id`;
11 ALTER TABLE `tests_results` ADD `status` TINYINT NOT NULL DEFAULT '0';
12
13 ## times tests - #3084
14 ALTER TABLE `tests_results` ADD `end_time` TIMESTAMP NOT NULL ;
15
16 ## end date - #3089
17 ALTER TABLE `courses` ADD `end_date` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `release_date`;