MT#11225 - add billing_profiles.fraud_use_reseller_rates

Change-Id: I592bd5a41743ce8a21aed493d9cb0d851cb7192f
(cherry picked from commit 63e368d9e2)
(cherry picked from commit 3babb2d2aa)
changes/95/9095/1
Kirill Solomko 11 years ago committed by Rene Krenn
parent 3e5f9cbd7f
commit 603b50b981

@ -0,0 +1,8 @@
use billing;
set autocommit=0;
ALTER TABLE billing_profiles DROP COLUMN fraud_use_reseller_rates;
DROP INDEX said_stime_idx ON accounting.cdr;
commit;

@ -0,0 +1,8 @@
use billing;
set autocommit=0;
ALTER TABLE billing_profiles ADD COLUMN fraud_use_reseller_rates tinyint(3) unsigned default 0 AFTER fraud_daily_notify;
CREATE INDEX said_stime_idx ON accounting.cdr (source_account_id, start_time);
commit;
Loading…
Cancel
Save