You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15167.down

11 lines
255 B

SET AUTOCOMMIT=0;
USE billing;
drop index billing_fees_unique on billing_fees;
delete from billing_fees;
insert into billing_fees select * from billing_fees_raw;
drop table if exists billing_fees_raw;
drop procedure if exists fill_billing_fees;
COMMIT;