From 1ab29882b42f6f87ff51190e3a47b067007eed27 Mon Sep 17 00:00:00 2001 From: Justin Richer Date: Fri, 18 Jan 2013 15:38:53 -0500 Subject: [PATCH] fixed user prepoulation table --- openid-connect-server/src/main/resources/db/users.sql | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/openid-connect-server/src/main/resources/db/users.sql b/openid-connect-server/src/main/resources/db/users.sql index 1fb083111..81ec7e67e 100644 --- a/openid-connect-server/src/main/resources/db/users.sql +++ b/openid-connect-server/src/main/resources/db/users.sql @@ -24,13 +24,13 @@ 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); + -- -- Merge the temporary users safely into the database. This is a two-step process to keep users from being created on every startup with a persistent store.