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.
9 lines
232 B
SQL
9 lines
232 B
SQL
INSERT OR IGNORE INTO users (id, email, password_hash, created_at, username)
|
|
VALUES (
|
|
'00000000-0000-4000-8000-000000000000',
|
|
'noreply@instance.invalid',
|
|
'!service-actor-no-login',
|
|
datetime('now'),
|
|
'instance'
|
|
);
|