misc
This commit is contained in:
parent
fbc6f562e3
commit
d7e0c59559
31 changed files with 249 additions and 57 deletions
|
@ -58,6 +58,16 @@ public static class TestDataSeeder
|
|||
(id, username, password_hash, password_salt)
|
||||
VALUES
|
||||
(@id, @username, @passwordHash, @salt);
|
||||
|
||||
INSERT INTO authn.user_role
|
||||
(user_id, role)
|
||||
VALUES
|
||||
(@id, 1);
|
||||
|
||||
INSERT INTO authn.signup_code
|
||||
(code, recipient_email, recipient_name, expires_at, redeeming_user_id)
|
||||
VALUES
|
||||
('fickli', 'me@johnbotr.is', 'john', null, null);
|
||||
"""
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue