init - add project files
This commit is contained in:
26
migrations/0000002_seed_data.up.sql
Normal file
26
migrations/0000002_seed_data.up.sql
Normal file
@@ -0,0 +1,26 @@
|
||||
INSERT INTO
|
||||
"user" (
|
||||
"id",
|
||||
"username",
|
||||
"email",
|
||||
"firstname",
|
||||
"lastname",
|
||||
"password",
|
||||
"failed_attempts",
|
||||
"last_login",
|
||||
"security_stamp",
|
||||
"data"
|
||||
)
|
||||
VALUES
|
||||
(
|
||||
0,
|
||||
"admin",
|
||||
"admin@adminland.org",
|
||||
"Example",
|
||||
"User",
|
||||
"$2a$10$YYljQ1vChy1v8piwBOK2GuTGofa09bXygVCnprX06jTJK6nqprE/u",
|
||||
0,
|
||||
"",
|
||||
"ss",
|
||||
""
|
||||
);
|
||||
Reference in New Issue
Block a user