campingmontagut/verify/contact.sql
jordi fita mas 17f7520876 Add customer and invoices sections
Copied as much as i could from Numerus, and made as few modifications as
i could to adapt to this code base; it is, quite frankly, a piece of
shit.

We need to be able to create invoices from scratch “just in case”,
apparently, but it is not yet possible to create an invoice from a
booking.
2024-04-28 20:28:45 +02:00

24 lines
502 B
PL/PgSQL

-- Verify camper:contact on pg
begin;
select contact_id
, company_id
, slug
, name
, id_document_type_id
, id_document_number
, address
, city
, province
, postal_code
, country_code
, created_at
from camper.contact
where false;
select 1 / count(*) from pg_class where oid = 'camper.contact'::regclass and relrowsecurity;
select 1 / count(*) from pg_policy where polname = 'company_policy' and polrelid = 'camper.contact'::regclass;
rollback;