14 lines
303 B
MySQL
14 lines
303 B
MySQL
|
-- Deploy numerus:invoice_contact_id_fkey to pg
|
||
|
-- requires: schema_numerus
|
||
|
-- requires: invoice
|
||
|
-- requires: contact_tax_details
|
||
|
|
||
|
begin;
|
||
|
|
||
|
alter table numerus.invoice
|
||
|
drop constraint invoice_contact_id_fkey
|
||
|
, add foreign key (contact_id) references numerus.contact_tax_details (contact_id)
|
||
|
;
|
||
|
|
||
|
commit;
|