mirror of https://github.com/sipwise/db-schema.git
Change-Id: Iba4d3ef4ab6b73e4eadfc6b2e6d10b9174db13ec
(cherry picked from commit 8bf9cddb5a)
changes/82/1782/1
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…
Reference in new issue