changed demo user accounts for server

pull/362/head
William Kim 2013-06-19 15:53:13 -04:00
parent 2b3376e0ed
commit 37dd7e7042
1 changed files with 12 additions and 14 deletions

View File

@ -11,25 +11,23 @@ START TRANSACTION;
-- --
INSERT INTO users_TEMP (username, password, enabled) VALUES INSERT INTO users_TEMP (username, password, enabled) VALUES
('jricher', 'password', true), ('admin','password',true),
('aanganes','password',true), ('cheezcat','password',true),
('mfranklin','password',true), ('user','password',true);
('srmoore','password',true);
INSERT INTO authorities_TEMP (username, authority) VALUES INSERT INTO authorities_TEMP (username, authority) VALUES
('jricher', 'ROLE_ADMIN'), ('admin','ROLE_ADMIN'),
('aanganes','ROLE_ADMIN'), ('cheezcat','ROLE_ADMIN'),
('jricher', 'ROLE_USER'), ('admin','ROLE_USER'),
('aanganes','ROLE_USER'), ('cheezcat','ROLE_USER'),
('mfranklin','ROLE_USER'), ('user','ROLE_USER');
('srmoore','ROLE_USER');
-- By default, the username 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 (sub, preferred_username, name, email, email_verified) VALUES INSERT INTO user_info_TEMP (sub, preferred_username, name, email, email_verified) VALUES
('jricher', 'jricher', 'Justin Richer', 'jricher@mitre.org', false), ('admin','admin','Demo Admin','admin@example.com',false),
('aanganes', 'aanganes', 'Amanda Anganes', 'aanganes@mitre.org', false), ('cheezcat','cheezcat','Cheezburger Cat','lol@example.com',false),
('mfranklin', 'mfranklin', 'Matt Franklin', 'mfranklin@mitre.org', false), ('user','user','Demo User','user@example.com',false);
('srmoore', 'srmoore', 'Steve Moore', 'srmoore@mitre.org', false);
-- --