Files

16 lines
441 B
SQL

-- View: public.v_funnel_collections
DROP VIEW IF EXISTS public.v_funnel_collections;
CREATE VIEW public.v_funnel_collections
AS
SELECT c.id AS collection_id,
c.name AS collection_name,
c.inserted AS date_added,
cp.product_id,
cp.inserted AS product_date_added
FROM collections c
JOIN collections_products cp ON c.id = cp.collection_id;
GRANT SELECT ON TABLE public.v_funnel_collections TO funnel;