some name refactoring

This commit is contained in:
Radu Ioan Fericean
2013-08-07 15:37:17 +03:00
parent cb20ae167f
commit 305dca0fc9
10 changed files with 81 additions and 102 deletions

View File

@@ -41,9 +41,9 @@ CREATE TABLE `tp_rates` (
`tag` varchar(24) NOT NULL,
`connect_fee` decimal(5,4) NOT NULL,
`rate` decimal(5,4) NOT NULL,
`rated_units` int(11) NOT NULL,
`rate_increments` int(11) NOT NULL,
`group_interval` int(11) NOT NULL,
`rate_unit` int(11) NOT NULL,
`rate_increment` int(11) NOT NULL,
`group_interval_start` int(11) NOT NULL,
`rounding_method` varchar(255) NOT NULL,
`rounding_decimals` tinyint(4) NOT NULL,
`weight` decimal(5,2) NOT NULL,

View File

@@ -1,4 +1,4 @@
#Tag,ConnectFee,Rate,RatedUnits,RateIncrements,GroupInterval,RoundingMethod,RoundingDecimals,Weight
#Tag,ConnectFee,Rate,RateUnit,RateIncrement,GroupIntervalStart,RoundingMethod,RoundingDecimals,Weight
LANDLINE_PEAK,0.02,0.02,60s,60s,0,*up,4,10
LANDLINE_PEAK,0.02,0.01,1s,1s,60s,*up,4,10
MOBILE_PEAK,0.02,0.14,60s,60s,0,*up,4,10
1 #Tag ConnectFee Rate RatedUnits RateUnit RateIncrements RateIncrement GroupInterval GroupIntervalStart RoundingMethod RoundingDecimals Weight
2 LANDLINE_PEAK 0.02 0.02 60s 60s 60s 60s 0 0 *up 4 10
3 LANDLINE_PEAK 0.02 0.01 1s 1s 1s 1s 60s 60s *up 4 10
4 MOBILE_PEAK 0.02 0.14 60s 60s 60s 60s 0 0 *up 4 10