numerus/verify/company.sql

27 lines
406 B
PL/PgSQL

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