Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 761 Bytes

contact_scrud_view.md

File metadata and controls

32 lines (26 loc) · 761 Bytes

website.contact_scrud_view view

Schema website
Materialized View Name contact_scrud_view
Owner frapid_db_user
Tablespace DEFAULT
Description

Source:

 CREATE OR REPLACE VIEW website.contact_scrud_view
 AS
 SELECT contacts.contact_id,
    contacts.title,
    contacts.name,
    contacts."position",
    contacts.email,
    contacts.display_contact_form,
    contacts.display_email
   FROM website.contacts
  WHERE NOT contacts.deleted;

Related Contents