- One more quick fix, make it "special award only", instead of "awards",

because a judge that wishes to judge a specific special award is only allowed
  to choose one.
This commit is contained in:
dave 2008-09-15 15:46:22 +00:00
parent 15f9d0cb89
commit 54aa1b7658

View File

@ -18,7 +18,7 @@ CREATE TABLE `users_judge` (
`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',
`special_award_only` ENUM( 'yes', 'no' ) NOT NULL DEFAULT 'no',
PRIMARY KEY ( `users_id` )
) ENGINE = MYISAM ;