- 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>
7 lines
235 B
SQL
7 lines
235 B
SQL
-- 082_create_api_keys_down.sql
|
|
-- Rollback: drop api_keys table
|
|
|
|
DROP INDEX IF EXISTS idx_api_keys_expires_at;
|
|
DROP INDEX IF EXISTS idx_api_keys_user_id;
|
|
DROP INDEX IF EXISTS idx_api_keys_prefix;
|
|
DROP TABLE IF EXISTS public.api_keys;
|