20 lines
452 B
MySQL
20 lines
452 B
MySQL
|
-- Deploy numerus:quote_contact to pg
|
||
|
-- requires: roles
|
||
|
-- requires: schema_numerus
|
||
|
-- requires: quote
|
||
|
-- requires: contact
|
||
|
|
||
|
begin;
|
||
|
|
||
|
set search_path to numerus, public;
|
||
|
|
||
|
create table quote_contact (
|
||
|
quote_id integer primary key references quote,
|
||
|
contact_id integer not null references contact
|
||
|
);
|
||
|
|
||
|
grant select, insert, update, delete on table quote_contact to invoicer;
|
||
|
grant select, insert, update, delete on table quote_contact to admin;
|
||
|
|
||
|
commit;
|