- Remove old apps/web/e2e/ test suite (replaced by tests/e2e/) - Remove old playwright configs (smoke, storybook, visual, root) - Move down migrations to veza-backend-api/migrations/rollback/ - Remove stale test results and playwright report artifacts Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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;
|