-
Notifications
You must be signed in to change notification settings - Fork 1
Production SQL Updates
Steven Wade edited this page Apr 15, 2024
·
1 revision
This page is meant to capture and document SQL queries/updates that we've run against our production database (and are NOT captured in Flyway migrations).
These likely will never be run again, but having a historical record of what was done can be helpful! If adding to this page, simply copy the example and paste it to the top of the list.
As part of going live, we wanted to remove any notifications that accrued during development. Otherwise when the feature flag was turned off, users would receive many historic notifications instead of current notifications. (See EASI-4158 )
DELETE FROM user_notification;
DELETE FROM activity;
N/A