Files
lxc-streamutils/apps/server-rust/migrations/009_gift_effect.sql
T
2026-07-19 00:39:56 -07:00

8 lines
370 B
SQL

-- Every account owns exactly one built-in full-screen gift-effect component.
-- Existing accounts are backfilled from the validated Rust defaults during
-- startup; the partial index keeps concurrent starts idempotent.
CREATE UNIQUE INDEX IF NOT EXISTS component_instances_single_gift_effect
ON component_instances(owner_user_id, kind)
WHERE kind = 'gift_effect';