-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-- Deploy ccbc:clean_pre_cut_over_cbc_history to pg | ||
|
||
BEGIN; | ||
|
||
DELETE FROM ccbc_public.record_version WHERE (table_name = 'cbc_data' OR table_name = 'cbc_data_change_reason') AND ts < '2024-10-01 07:00:00+00'; | ||
|
||
COMMIT; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-- Revert ccbc:clean_pre_cut_over_cbc_history from pg | ||
|
||
BEGIN; | ||
|
||
-- No need to revert the data deletion as it was done to remove obsolete data | ||
|
||
COMMIT; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -703,3 +703,4 @@ tables/application_rd 2024-09-11T18:21:13Z Rafael Solorzano <61289255+rafasdc@us | |
@1.197.1 2024-10-10T17:11:00Z CCBC Service Account <[email protected]> # release v1.197.1 | ||
@1.197.2 2024-10-10T22:07:55Z CCBC Service Account <[email protected]> # release v1.197.2 | ||
@1.197.3 2024-10-16T16:15:36Z CCBC Service Account <[email protected]> # release v1.197.3 | ||
clean_pre_cut_over_cbc_history 2024-10-15T23:26:47Z ,,, <ryohani89@NH504670> # Remove pre-cut-over cbc changes history |