fixed user_id mapping

pull/263/head
Justin Richer 2012-12-04 16:18:37 -05:00
parent f091343d84
commit d7d9e84e70
1 changed files with 5 additions and 4 deletions

View File

@ -24,11 +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
INSERT INTO user_info_TEMP (user_id, preferred_username, name, email, email_verified) VALUES
('user1-abc123', 'jricher', 'Justin Richer', 'jricher@mitre.org', false),
('user2-xj2f51', 'aanganes', 'Amanda Anganes', 'aanganes@mitre.org', false),
('user3-2je938', 'mfranklin', 'Matt Franklin', 'mfranklin@mitre.org', false),
('user4-l2ww33', 'srmoore', 'Steve Moore', 'srmoore@mitre.org', false);
('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);
--