Some checks failed
CI / Check / Test (push) Failing after 52s
Migrations (postgres + sqlite) insert a service actor with a well-known UUID. Removes the InstanceActorUserRepo wrapper.
11 lines
262 B
SQL
11 lines
262 B
SQL
INSERT INTO users (id, username, email, password_hash, created_at, role)
|
|
VALUES (
|
|
'00000000-0000-4000-8000-000000000000',
|
|
'instance',
|
|
'noreply@instance.invalid',
|
|
'!service-actor-no-login',
|
|
NOW(),
|
|
'standard'
|
|
)
|
|
ON CONFLICT (id) DO NOTHING;
|