34 lines
784 B
PL/PgSQL
34 lines
784 B
PL/PgSQL
-- Deploy camper:tax_class to pg
|
|
-- requires: roles
|
|
-- requires: schema_camper
|
|
-- requires: user_profile
|
|
-- requires: company
|
|
|
|
begin;
|
|
|
|
set search_path to camper, public;
|
|
|
|
create table tax_class (
|
|
tax_class_id integer generated by default as identity not null primary key,
|
|
company_id integer not null references company,
|
|
name text not null constraint name_not_empty check(length(trim(name)) > 0)
|
|
);
|
|
|
|
grant select, insert, update, delete on table tax_class to employee;
|
|
grant select, insert, update, delete on table tax_class to admin;
|
|
|
|
alter table tax_class enable row level security;
|
|
|
|
create policy company_policy
|
|
on tax_class
|
|
using (
|
|
exists(
|
|
select 1
|
|
from company_user
|
|
join user_profile using (user_id)
|
|
where company_user.company_id = tax_class.company_id
|
|
)
|
|
);
|
|
|
|
commit;
|