Add missing ; to 194

Remove duplicate INSERT of roles (its in 193, no need to do it again?!)
This commit is contained in:
james 2011-02-21 16:22:29 +00:00
parent 64ef61d88f
commit e06eb7dbd8
2 changed files with 1 additions and 14 deletions

View File

@ -1 +1 @@
ALTER TABLE `accounts` ADD `pendingemail` VARCHAR( 256 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL AFTER `email`
ALTER TABLE `accounts` ADD `pendingemail` VARCHAR( 256 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL AFTER `email`;

View File

@ -22,16 +22,3 @@ ALTER TABLE users ADD COLUMN `position` varchar(64);
ALTER TABLE users ADD COLUMN `notes` text;
ALTER TABLE users ADD COLUMN `schools_id` INT NOT NULL;
ALTER TABLE users ADD COLUMN `grade` INT;
INSERT INTO `roles` (`id`, `roletype`, `rolename`) VALUES
(1, 'alumni', 'Alumni'),
(2, 'committee', 'Committee'),
(3, 'fair', 'Fair'),
(4, 'judge', 'Judge'),
(5, 'mentor', 'Mentor'),
(6, 'parent', 'Parent'),
(7, 'principal', 'Principal'),
(8, 'sponsor', 'Sponsor'),
(9, 'student', 'Student'),
(10, 'teacher', 'Teacher'),
(11, 'volunteer', 'Volunteer');