From 9b828b15d4ad1d81c9d707defe4147d3127871ed Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 6 Feb 2009 06:52:28 +0000 Subject: [PATCH] I used 'special' not 'specialawards' in the code --- db/db.update.122.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/db.update.122.sql b/db/db.update.122.sql index 647ebeec..42da53b8 100644 --- a/db/db.update.122.sql +++ b/db/db.update.122.sql @@ -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` ;