11 lines
535 B
SQL
11 lines
535 B
SQL
-- Built-in component kinds are instance-based. An account may create multiple
|
|
-- instances of the same kind, each with independent settings, OBS credentials,
|
|
-- realtime fanout, and component-owned durable state.
|
|
|
|
DROP INDEX IF EXISTS component_instances_single_song_request;
|
|
DROP INDEX IF EXISTS component_instances_single_gift_effect;
|
|
DROP INDEX IF EXISTS component_instances_single_gift_menu;
|
|
|
|
COMMENT ON TABLE component_instances IS
|
|
'Tenant-owned component instances. Multiple rows of the same kind may belong to one account.';
|