MT#11791 Increase costs precisions to 6 number after point

To enable accounting using low prices

Change-Id: Iff76500920eafb409458bb69e44075be1d89d01f
changes/66/1766/2
Irina Peshinskaya 10 years ago
parent 2afdeeee4f
commit 8ac49c00b5

@ -148,11 +148,11 @@ __PACKAGE__->add_columns(
"call_id",
{ data_type => "varchar", is_nullable => 0, size => 255 },
"source_carrier_cost",
{ data_type => "decimal", is_nullable => 1, size => [10, 2] },
{ data_type => "decimal", is_nullable => 1, size => [14, 6] },
"source_reseller_cost",
{ data_type => "decimal", is_nullable => 1, size => [10, 2] },
{ data_type => "decimal", is_nullable => 1, size => [14, 6] },
"source_customer_cost",
{ data_type => "decimal", is_nullable => 1, size => [10, 2] },
{ data_type => "decimal", is_nullable => 1, size => [14, 6] },
"source_carrier_free_time",
{ data_type => "integer", extra => { unsigned => 1 }, is_nullable => 1 },
"source_reseller_free_time",
@ -172,11 +172,11 @@ __PACKAGE__->add_columns(
"source_customer_billing_zone_id",
{ data_type => "integer", extra => { unsigned => 1 }, is_nullable => 1 },
"destination_carrier_cost",
{ data_type => "decimal", is_nullable => 1, size => [10, 2] },
{ data_type => "decimal", is_nullable => 1, size => [14, 6] },
"destination_reseller_cost",
{ data_type => "decimal", is_nullable => 1, size => [10, 2] },
{ data_type => "decimal", is_nullable => 1, size => [14, 6] },
"destination_customer_cost",
{ data_type => "decimal", is_nullable => 1, size => [10, 2] },
{ data_type => "decimal", is_nullable => 1, size => [14, 6] },
"destination_carrier_free_time",
{ data_type => "integer", extra => { unsigned => 1 }, is_nullable => 1 },
"destination_reseller_free_time",

Loading…
Cancel
Save