39 lines
1.1 KiB
PL/PgSQL
39 lines
1.1 KiB
PL/PgSQL
-- Deploy numerus:company to pg
|
|
-- requires: schema_numerus
|
|
-- requires: extension_vat
|
|
-- requires: email
|
|
-- requires: extension_pg_libphonenumber
|
|
-- requires: extension_uri
|
|
-- requires: currency_code
|
|
-- requires: currency
|
|
|
|
begin;
|
|
|
|
set search_path to numerus,public;
|
|
|
|
create table company (
|
|
company_id serial primary key,
|
|
slug uuid not null unique default gen_random_uuid(),
|
|
business_name text not null constraint business_name_not_empty check (length(trim(business_name)) > 1),
|
|
vatin vatin not null,
|
|
trade_name text not null,
|
|
phone packed_phone_number not null,
|
|
email email not null,
|
|
web uri not null,
|
|
address text not null,
|
|
city text not null,
|
|
province text not null,
|
|
postal_code text not null,
|
|
country_code country_code not null references country,
|
|
currency_code currency_code not null references currency,
|
|
invoice_number_format text not null default '"FRA"YYYY0000',
|
|
legal_disclaimer text not null default '',
|
|
created_at timestamptz not null default current_timestamp
|
|
);
|
|
|
|
grant select, update on table company to invoicer;
|
|
grant select, update on table company to admin;
|
|
|
|
|
|
commit;
|