Files
movies-diary/crates/adapters/sqlite/migrations/0022_instance_actor.sql
Gabriel Kaszewski 6bd728fd50
Some checks failed
CI / Check / Test (push) Failing after 52s
feat: replace instance actor decorator with real DB row
Migrations (postgres + sqlite) insert a service actor with a well-known
UUID. Removes the InstanceActorUserRepo wrapper.
2026-05-30 03:16:03 +02:00

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'
);