forked from science-ation/science-ation
- Remove my testing database name from the CREATEs
This commit is contained in:
parent
f8f9964fba
commit
15f9d0cb89
@ -1,4 +1,4 @@
|
||||
CREATE TABLE `sfiab-dave`.`users_years` (
|
||||
CREATE TABLE `users_years` (
|
||||
`id` INT NOT NULL AUTO_INCREMENT ,
|
||||
`users_id` INT NOT NULL ,
|
||||
`type` ENUM( 'student', 'judge', 'committee', 'volunteer', 'fair' ) NOT NULL ,
|
||||
@ -11,7 +11,7 @@ ALTER TABLE `users_committee` ADD `active` ENUM( 'yes', 'no' ) NOT NULL DEFAULT
|
||||
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` (
|
||||
CREATE TABLE `users_judge` (
|
||||
`users_id` INT NOT NULL ,
|
||||
`active` ENUM( 'yes', 'no' ) NOT NULL DEFAULT 'no',
|
||||
`years_school` TINYINT NOT NULL ,
|
||||
|
Loading…
Reference in New Issue
Block a user