MT#11791 Increase costs precisions to 6 number after point

Change-Id: Iba4d3ef4ab6b73e4eadfc6b2e6d10b9174db13ec
(cherry picked from commit 8bf9cddb5a)
changes/82/1782/1
Irina Peshinskaya 11 years ago
parent 930d990869
commit eee579d523

@ -0,0 +1,9 @@
USE accounting;
ALTER TABLE accounting.cdr
MODIFY source_carrier_cost decimal(10,2) DEFAULT NULL,
MODIFY source_reseller_cost decimal(10,2) DEFAULT NULL,
MODIFY source_customer_cost decimal(10,2) DEFAULT NULL,
MODIFY destination_carrier_cost decimal(10,2) DEFAULT NULL,
MODIFY destination_reseller_cost decimal(10,2) DEFAULT NULL,
MODIFY destination_customer_cost decimal(10,2) DEFAULT NULL;

@ -0,0 +1,9 @@
USE accounting;
ALTER TABLE accounting.cdr
MODIFY source_carrier_cost decimal(14,6) DEFAULT NULL,
MODIFY source_reseller_cost decimal(14,6) DEFAULT NULL,
MODIFY source_customer_cost decimal(14,6) DEFAULT NULL,
MODIFY destination_carrier_cost decimal(14,6) DEFAULT NULL,
MODIFY destination_reseller_cost decimal(14,6) DEFAULT NULL,
MODIFY destination_customer_cost decimal(14,6) DEFAULT NULL;
Loading…
Cancel
Save