whoops add the sql update file too

This commit is contained in:
james 2005-04-15 20:33:49 +00:00
parent 917e374f0a
commit 9b385a10fd

9
db/db.update.4.sql Normal file
View File

@ -0,0 +1,9 @@
ALTER TABLE `judges_teams_link` ADD `captain` ENUM( 'no', 'yes' ) NOT NULL AFTER `judges_teams_id` ;
CREATE TABLE `judges_timeslots` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT ,
`date` DATE NOT NULL ,
`starttime` TIME NOT NULL ,
`endtime` TIME NOT NULL ,
`year` INT NOT NULL ,
PRIMARY KEY ( `id` )
);