Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
-- NOTE: Don't remove any of these drop statements, even if we stop re-creating the view in *-create.sql. Drop statements must
-- remain in place so we can correctly upgrade from older versions, which we commit to for two years after each release.

SELECT core.fn_dropifexists('max_virus_challenge_date', 'oconnor', 'VIEW', NULL);
SELECT core.fn_dropifexists('active_quotes', 'oconnor', 'VIEW', NULL);
SELECT core.fn_dropifexists('active_grants', 'oconnor', 'VIEW', NULL);
DROP VIEW IF EXISTS oconnor.max_virus_challenge_date;
DROP VIEW IF EXISTS oconnor.active_quotes;
DROP VIEW IF EXISTS oconnor.active_grants;
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ CREATE TABLE OConnorExperiments.ParentExperiments
/* oconnorexperiments-13.10-13.20.sql */

-- drop ParentExperiments.Container FK to allow bulk folder delete
SELECT core.fn_dropifexists('ParentExperiments', 'OConnorExperiments', 'constraint', 'FK_ParentExperiments_Container');
ALTER TABLE OConnorExperiments.ParentExperiments DROP CONSTRAINT IF EXISTS FK_ParentExperiments_Container;

/* oconnorexperiments-13.20-13.30.sql */

Expand Down
Loading