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/15404.down

10 lines
325 B

USE provisioning;
set autocommit=0;
SELECT id FROM voip_preferences WHERE attribute='advice_of_charge' INTO @aoc_attr_id;
DELETE FROM voip_preferences_enum where preference_id = @aoc_attr_id;
DELETE FROM voip_preferences where id = @aoc_attr_id;
ALTER TABLE billing.billing_profiles DROP COLUMN `advice_of_charge`;
commit;