-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[batch] Remove all v2 billing tables (#13893)
Fixes #13656. This PR removes all triggers and tables associated with the v2 tables. Stacked on #13892.
- Loading branch information
Showing
3 changed files
with
17 additions
and
147 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
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,14 @@ | ||
DROP TRIGGER IF EXISTS aggregated_bp_user_resources_v2_before_insert; | ||
DROP TRIGGER IF EXISTS aggregated_bp_user_resources_by_date_v2_before_insert; | ||
DROP TRIGGER IF EXISTS aggregated_job_group_resources_v2_before_insert; | ||
DROP TRIGGER IF EXISTS aggregated_job_resources_v2_before_insert; | ||
|
||
DROP TRIGGER IF EXISTS aggregated_bp_user_resources_v2_after_update; | ||
DROP TRIGGER IF EXISTS aggregated_bp_user_resources_by_date_v2_after_update; | ||
DROP TRIGGER IF EXISTS aggregated_job_group_resources_v2_after_update; | ||
DROP TRIGGER IF EXISTS aggregated_job_resources_v2_after_update; | ||
|
||
DROP TABLE IF EXISTS aggregated_billing_project_user_resources_v2; | ||
DROP TABLE IF EXISTS aggregated_billing_project_user_resources_by_date_v2; | ||
DROP TABLE IF EXISTS aggregated_job_group_resources_v2; | ||
DROP TABLE IF EXISTS aggregated_job_resources_v2; |
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