mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-16 05:39:54 +05:00
using time.Duration for rateincrements and groupinterval
This commit is contained in:
@@ -42,8 +42,8 @@ CREATE TABLE `tp_rates` (
|
||||
`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_increments` varchar(24) NOT NULL,
|
||||
`group_interval` varchar(24) NOT NULL,
|
||||
`rounding_method` varchar(255) NOT NULL,
|
||||
`rounding_decimals` tinyint(4) NOT NULL,
|
||||
`weight` decimal(5,2) NOT NULL,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#Tag,ConnectFee,Rate,RatedUnits,RateIncrements,GroupInterval,RoundingMethod,RoundingDecimals,Weight
|
||||
LANDLINE_PEAK,0.02,0.02,60,60,0,*up,4,10
|
||||
LANDLINE_PEAK,0.02,0.01,1,1,60,*up,4,10
|
||||
MOBILE_PEAK,0.02,0.14,60,60,0,*up,4,10
|
||||
LANDLINE_OFFPEAK,1,0,60,60,0,*up,4,10
|
||||
MOBILE_OFFPEAK,0.02,0.1,60,60,0,*up,4,10
|
||||
RT_FS_USERS,0,0,60,60,0,*up,0,10
|
||||
LANDLINE_PEAK,0.02,0.02,60,60s,0,*up,4,10
|
||||
LANDLINE_PEAK,0.02,0.01,1,1s,60s,*up,4,10
|
||||
MOBILE_PEAK,0.02,0.14,60,60s,0,*up,4,10
|
||||
LANDLINE_OFFPEAK,1,0,60,60s,0,*up,4,10
|
||||
MOBILE_OFFPEAK,0.02,0.1,60,60s,0,*up,4,10
|
||||
RT_FS_USERS,0,0,60,60s,0,*up,0,10
|
||||
|
||||
|
Reference in New Issue
Block a user