- 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>
8 lines
327 B
SQL
8 lines
327 B
SQL
-- 125_follow_counts_triggers_down.sql
|
|
-- Rollback v0.10.0 F187 follow counts triggers
|
|
|
|
DROP TRIGGER IF EXISTS trg_follows_insert_counts ON public.follows;
|
|
DROP TRIGGER IF EXISTS trg_follows_delete_counts ON public.follows;
|
|
|
|
DROP FUNCTION IF EXISTS increment_follow_counts();
|
|
DROP FUNCTION IF EXISTS decrement_follow_counts();
|