- Non-invasive commit, ground work for moving judges to the user backend.

This commit is contained in:
dave 2008-09-15 03:51:52 +00:00
parent d017f6ff3c
commit f8f9964fba
2 changed files with 25 additions and 1 deletions

View File

@ -1 +1 @@
113
114

24
db/db.update.114.sql Normal file
View File

@ -0,0 +1,24 @@
CREATE TABLE `sfiab-dave`.`users_years` (
`id` INT NOT NULL AUTO_INCREMENT ,
`users_id` INT NOT NULL ,
`type` ENUM( 'student', 'judge', 'committee', 'volunteer', 'fair' ) NOT NULL ,
`year` INT NOT NULL ,
PRIMARY KEY ( `id` ) ,
INDEX ( `users_id` )
) ENGINE = MYISAM ;
ALTER TABLE `users_committee` ADD `active` ENUM( 'yes', 'no' ) NOT NULL DEFAULT 'no' AFTER `users_id` ;
ALTER TABLE `users_fair` ADD `active` ENUM( 'yes', 'no' ) NOT NULL DEFAULT 'no' AFTER `users_id` ;
ALTER TABLE `users_volunteer` ADD `active` ENUM( 'yes', 'no' ) NOT NULL DEFAULT 'no' AFTER `users_id` ;
CREATE TABLE `sfiab-dave`.`users_judge` (
`users_id` INT NOT NULL ,
`active` ENUM( 'yes', 'no' ) NOT NULL DEFAULT 'no',
`years_school` TINYINT NOT NULL ,
`years_regional` TINYINT NOT NULL ,
`years_national` TINYINT NOT NULL ,
`willing_chair` ENUM( 'yes', 'no' ) NOT NULL DEFAULT 'no',
`special_awards_only` ENUM( 'yes', 'no' ) NOT NULL DEFAULT 'no',
PRIMARY KEY ( `users_id` )
) ENGINE = MYISAM ;