forked from science-ation/science-ation
- Non-invasive commit, ground work for moving judges to the user backend.
This commit is contained in:
parent
d017f6ff3c
commit
f8f9964fba
@ -1 +1 @@
|
||||
113
|
||||
114
|
||||
|
24
db/db.update.114.sql
Normal file
24
db/db.update.114.sql
Normal 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 ;
|
||||
|
Loading…
x
Reference in New Issue
Block a user