diff --git a/db/db.code.version.txt b/db/db.code.version.txt index 9b252fd0..dee79f10 100644 --- a/db/db.code.version.txt +++ b/db/db.code.version.txt @@ -1 +1 @@ -113 +114 diff --git a/db/db.update.114.sql b/db/db.update.114.sql new file mode 100644 index 00000000..5fcdf829 --- /dev/null +++ b/db/db.update.114.sql @@ -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 ; +