11 lines
159 B
MySQL
11 lines
159 B
MySQL
|
-- Revert numerus:available_invoice_status from pg
|
||
|
|
||
|
begin;
|
||
|
|
||
|
set search_path to numerus;
|
||
|
|
||
|
delete from invoice_status_i18n;
|
||
|
delete from invoice_status;
|
||
|
|
||
|
commit;
|