- 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
338 B
SQL
8 lines
338 B
SQL
-- 910_create_audit_logs_down.sql
|
|
-- Rollback: Drop audit_logs table and its indexes
|
|
|
|
DROP INDEX IF EXISTS public.idx_audit_logs_user_id;
|
|
DROP INDEX IF EXISTS public.idx_audit_logs_action;
|
|
DROP INDEX IF EXISTS public.idx_audit_logs_timestamp;
|
|
DROP INDEX IF EXISTS public.idx_audit_logs_ip_address;
|
|
DROP TABLE IF EXISTS public.audit_logs;
|