- 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
321 B
SQL
7 lines
321 B
SQL
-- Rollback migration 941: restore original push defaults
|
|
ALTER TABLE notification_preferences
|
|
ALTER COLUMN push_follow SET DEFAULT true,
|
|
ALTER COLUMN push_message SET DEFAULT true,
|
|
ALTER COLUMN push_like SET DEFAULT true,
|
|
ALTER COLUMN push_comment SET DEFAULT true,
|
|
ALTER COLUMN push_mention SET DEFAULT true;
|