-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MODCAL-118: Remove remaining RMB functions
- Loading branch information
1 parent
e4ec65f
commit 765323b
Showing
2 changed files
with
81 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
78 changes: 78 additions & 0 deletions
78
src/main/resources/db/changes/0060-drop-rmb-functions.yaml
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,78 @@ | ||
databaseChangeLog: | ||
- changeSet: | ||
id: 0060-drop-rmb-functions | ||
author: university-of-alabama/ncovercash | ||
comment: "Delete all previous RMB functions that have not been used since 2.0.0." | ||
changes: | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS audit_openings_changes CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS audit_exceptional_hours_changes CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS concat_array_object CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS get_tsvector CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS tsquery_phrase(text) CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS uuid_larger CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS next_uuid CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS count_estimate_default CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS audit_regular_hours_changes CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS rmb_internal_index CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS set_actual_opening_hours_md_json CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS normalize_digits CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS set_id_in_jsonb CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS first_array_object_value CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS concat_space_sql CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS set_openings_md_json CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS f_unaccent CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS tsquery_and(text) CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS audit_actual_opening_hours_changes CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS exceptional_hours_set_md CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS audit_exceptions_changes CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS openings_set_md CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS concat_array_object_values CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS set_exceptional_hours_md_json CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS actual_opening_hours_set_md CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS uuid_smaller CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS tsquery_or(text) CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS concat_array_object_values(jsonb,text) CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS concat_array_object_values(jsonb,text,text,text) CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS regular_hours_set_md CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS exceptions_set_md CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS upsert CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS set_exceptions_md_json CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS count_estimate CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS set_regular_hours_md_json CASCADE; | ||
- sql: | ||
sql: DROP FUNCTION IF EXISTS count_estimate_smart2 CASCADE; |