[CHORE] Remove drop from repeatable applications view#3877
Merged
matbusby-fw merged 1 commit intodevelopfrom Apr 1, 2026
Merged
[CHORE] Remove drop from repeatable applications view#3877matbusby-fw merged 1 commit intodevelopfrom
matbusby-fw merged 1 commit intodevelopfrom
Conversation
asinn134
approved these changes
Apr 1, 2026
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



The
now_application_gis_export_viewis referencing theapplications_view, so when theapplications_viewis updated it was trying to drop itself completely and then create or replace itself. However, because thenow_application_gis_export_viewis now dependent on it, the migration fails.Removed the Drop at the top of the repeatable applications view. It retains the
CREATE OR REPLACEwhich will effectively update the view without hitting the contstraint where the gis view is dependent on it so it fails.