From 15f9d0cb89bd4119088437e61b74d55397ac5f2f Mon Sep 17 00:00:00 2001 From: dave Date: Mon, 15 Sep 2008 03:59:53 +0000 Subject: [PATCH] - Remove my testing database name from the CREATEs --- db/db.update.114.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/db.update.114.sql b/db/db.update.114.sql index 5fcdf82..d16507c 100644 --- a/db/db.update.114.sql +++ b/db/db.update.114.sql @@ -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 ,