Skip to content

Commit

Permalink
Add admin user to migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
Pomog committed Jan 12, 2024
1 parent 093e6ca commit d2ce9ee
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Empty file.
19 changes: 19 additions & 0 deletions migrations/20240112204933_add_user_to_user_table.postgres.up.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
INSERT INTO
users (
first_name,
last_name,
email,
password,
access_level,
created_at,
updated_at
)
VALUES (
'admin',
'admin',
'thoryur@gmail.com',
'$2a$10$1ILtQrQq3w1cpFSCKeljweQz8B56gb7xDKc4ap68bgqpqVHuURMDy',
1,
'2023-11-29 18:27:17.551926',
'2023-11-29 18:27:17.551926'
);

0 comments on commit d2ce9ee

Please sign in to comment.