diff --git a/Schema/mipViews.sql b/Schema/mipViews.sql index ecbd5f2..fefac40 100644 --- a/Schema/mipViews.sql +++ b/Schema/mipViews.sql @@ -14,7 +14,6 @@ @@V_LACO.vw @@V_CURRENT_PARTY_ADDRESSES.vw @@v_current_contact_mechanisms.vw -@@v_complete_ext_modules.vw @@V_QUOTE_DETAILS.vw @@V_current_enquiry_status.vw @@V_current_quote_status.vw diff --git a/Schema/v_complete_ext_modules.vw b/Schema/v_complete_ext_modules.vw deleted file mode 100644 index f2766c4..0000000 --- a/Schema/v_complete_ext_modules.vw +++ /dev/null @@ -1,30 +0,0 @@ -CREATE OR REPLACE VIEW v_complete_ext_modules -AS -SELECT * - FROM ext_modules t - WHERE field_1 IS NOT NULL - AND field_2 IS NOT NULL - AND field_3 IS NOT NULL - AND field_4 IS NOT NULL - AND field_5 IS NOT NULL - AND field_6 IS NOT NULL - AND field_7 IS NOT NULL - AND field_8 IS NOT NULL - AND field_9 IS NOT NULL - AND field_10 IS NOT NULL - AND field_11 IS NOT NULL - AND field_12 IS NOT NULL - AND field_13 IS NOT NULL - AND field_14 IS NOT NULL - AND field_17 IS NOT NULL - AND field_18 IS NOT NULL - AND field_19 IS NOT NULL - AND field_20 IS NOT NULL - AND field_21 IS NOT NULL - AND field_22 IS NOT NULL - AND field_25 IS NOT NULL - AND field_26 IS NOT NULL - AND field_27 IS NOT NULL - AND field_28 IS NOT NULL - AND field_30 IS NOT NULL -/