9 lines
152 B
MySQL
9 lines
152 B
MySQL
|
-- Revert numerus:company_default_payment_method from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
alter table numerus.company
|
||
|
drop column if exists default_payment_method_id;
|
||
|
|
||
|
commit;
|