campingmontagut/verify/company.sql
jordi fita mas 27af39b296 Add the Catalonia’s Tourism Registry number to company
It is required to be displayed on the website of tourism companies of
Catalonia.
2023-10-14 21:59:36 +02:00

28 lines
419 B
PL/PgSQL

-- Verify camper:company on pg
begin;
select company_id
, slug
, business_name
, vatin
, trade_name
, phone
, email
, web
, address
, city
, province
, postal_code
, country_code
, rtc_number
, currency_code
, default_lang_tag
, invoice_number_format
, legal_disclaimer
, created_at
from camper.company
where false;
rollback;