fixed user prepoulation table

pull/263/head
Justin Richer 2013-01-18 15:38:53 -05:00
parent 0ab4ad4bbe
commit 1ab29882b4
1 changed files with 5 additions and 5 deletions

View File

@ -24,12 +24,12 @@ INSERT INTO authorities_TEMP (username, authority) VALUES
('mfranklin','ROLE_USER'),
('srmoore','ROLE_USER');
-- By default, the user_id column here has to match the username column in the users table, above
-- By default, the username column here has to match the username column in the users table, above
INSERT INTO user_info_TEMP (user_id, preferred_username, name, email, email_verified) VALUES
('jricher', 'jricher', 'Justin Richer', 'jricher@mitre.org', false),
('jricher', 'aanganes', 'Amanda Anganes', 'aanganes@mitre.org', false),
('jricher', 'mfranklin', 'Matt Franklin', 'mfranklin@mitre.org', false),
('jricher', 'srmoore', 'Steve Moore', 'srmoore@mitre.org', false);
('aanganes', 'aanganes', 'Amanda Anganes', 'aanganes@mitre.org', false),
('mfranklin', 'mfranklin', 'Matt Franklin', 'mfranklin@mitre.org', false),
('srmoore', 'srmoore', 'Steve Moore', 'srmoore@mitre.org', false);
--