Skip to content

Commit

Permalink
fix: Add new user to local setup script (#1566)
Browse files Browse the repository at this point in the history
  • Loading branch information
MCatherine1994 authored Aug 23, 2024
1 parent 73b80ca commit 997a8f1
Showing 1 changed file with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
-- convention (start with "V[#]__"). Recommend to rename this file locally and
-- make sure to git ignore the file so it doesn't get checked in. The cognito
-- user ids in this script have been intentionally mangled for security purposes.
-- If it is just for personal use, you only need to add your own IDIR guid
-- (available from the "users" tab in FAM DEV Cognito).
-- To setup your local enviornment, you need to update the cognito_user_id as well as the your own IDIR user_guid
-- (available from the "users" tab in FAM DEV Cognito). We use upper cases for user_guid,
-- because the real user_guid are all in upper cases.

-- This script does not run in production (as it is in the "local_sql"
-- directory instead of the "sql" directory). FYI other scripts can be added to
Expand Down Expand Up @@ -42,12 +43,10 @@ INSERT INTO app_fam.fam_user (
user_name,
user_type_code,
cognito_user_id,
user_guid,
create_user
)
VALUES

('JFERREIR','I','test-idir_278f48bd9mangledf7e618d@idir',CURRENT_USER),
('NSAGLION','I','test-idir_3f1414bd1mangled18a1293c40@idir',CURRENT_USER),
('CMENG','I','test-idir_a9888e8ac6a04mangled35df625bf@idir',CURRENT_USER),
('OLIBERCH','I','test-idir_b7e191fa11dmangled9df1854b71@idir',CURRENT_USER);

('CMENG','I','test-idir_a9888e8ac6a04mangled35df625bf@idir','A9888E8AC6A04MANGLED00135DF625BF',CURRENT_USER),
('OLIBERCH','I','test-idir_b7e191fa11dmangled9df1854b71@idir','B7E191FA11MANLED818EC79DF1854B71',CURRENT_USER),
('CYU','I','test-idir_234d9cbe4373457famangledd26ab162@idir','234D9CBE4373457ANLEDE215D26AB162',CURRENT_USER);

0 comments on commit 997a8f1

Please sign in to comment.