6 lines
240 B
SQL
6 lines
240 B
SQL
-- 077_create_live_streams_down.sql
|
|
-- Rollback: Drop live_streams table and its indexes
|
|
|
|
DROP INDEX IF EXISTS public.idx_live_streams_user_id;
|
|
DROP INDEX IF EXISTS public.idx_live_streams_is_live;
|
|
DROP TABLE IF EXISTS public.live_streams;
|