forked from science-ation/science-ation
I used 'special' not 'specialawards' in the code
This commit is contained in:
parent
37b774f68a
commit
9b828b15d4
@ -1,9 +1,9 @@
|
||||
ALTER TABLE `judges_timeslots` ADD `round_id` INT NOT NULL AFTER `id` ;
|
||||
ALTER TABLE `judges_timeslots` ADD `round_name` TINYTEXT NOT NULL AFTER `endtime` ;
|
||||
ALTER TABLE `judges_timeslots` ADD `type` ENUM( 'timeslot','divisional1', 'divisional2', 'grand', 'specialawards' ) NOT NULL AFTER `round_id` ;
|
||||
ALTER TABLE `judges_timeslots` ADD `type` ENUM( 'timeslot','divisional1', 'divisional2', 'grand', 'special' ) NOT NULL AFTER `round_id` ;
|
||||
|
||||
UPDATE `judges_timeslots` SET `type`='divisional1' WHERE allowdivisional='yes';
|
||||
UPDATE `judges_timeslots` SET `type`='specialawards' WHERE allowdivisional='no';
|
||||
UPDATE `judges_timeslots` SET `type`='special' WHERE allowdivisional='no';
|
||||
|
||||
ALTER TABLE `judges_timeslots` DROP `allowdivisional` ;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user