I used 'special' not 'specialawards' in the code

This commit is contained in:
dave 2009-02-06 06:52:28 +00:00
parent 37b774f68a
commit 9b828b15d4

View File

@ -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` ;