2024-12-02 17:39:00 +00:00
|
|
|
-- INSERT INTO users
|
|
|
|
-- (id, handle, email, roles, status, password_hash, created_at)
|
|
|
|
-- VALUES
|
|
|
|
-- ('30c134a7-d541-4ec7-9310-9c8e298077db', 'test', 'test@example.org', '[]', 'Active', '$argon2i$v=19$m=4096,t=3,p=1$V2laYjAwTlFHOUpiekRlVzRQUU0$33h8XwAWM3pKQM7Ksler0l7rMJfseTuWPJKrdX/cGyc', '2024-11-30T00:00:00Z');
|
|
|
|
--
|
|
|
|
|
|
|
|
|
2024-11-28 11:47:00 +00:00
|
|
|
INSERT INTO users
|
2024-12-02 17:39:00 +00:00
|
|
|
(id, handle, email, roles, status, reset_password_token, created_at)
|
2024-11-28 11:47:00 +00:00
|
|
|
VALUES
|
2024-12-02 17:39:00 +00:00
|
|
|
('00000001-0042-0001-0001-00000000432', 'invited_user1', 'invited-user1@example.org', '[]', 'Invited', 'A909-Z539-L128-O400', '2024-11-30T00:00:00Z');
|
2024-11-28 11:47:00 +00:00
|
|
|
|