quick patch

This commit is contained in:
jacob 2010-07-06 17:50:52 +00:00
parent 342dbe6cad
commit 2aa8e3805a

View File

@ -22,3 +22,16 @@ 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');