mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-19 22:28:45 +05:00
Increase min_sleep in TP tables from int to bigint since otherwise gets trucated
This commit is contained in:
@@ -194,7 +194,7 @@ CREATE TABLE `tp_action_triggers` (
|
||||
`threshold_type` char(12) NOT NULL,
|
||||
`threshold_value` DECIMAL(20,4) NOT NULL,
|
||||
`recurrent` BOOLEAN NOT NULL,
|
||||
`min_sleep` int(11) NOT NULL,
|
||||
`min_sleep` BIGINT NOT NULL,
|
||||
`destination_tag` varchar(64) NOT NULL,
|
||||
`balance_weight` DECIMAL(8,2) NOT NULL,
|
||||
`balance_expiry_time` varchar(24) NOT NULL,
|
||||
|
||||
@@ -171,7 +171,7 @@ CREATE TABLE tp_action_triggers (
|
||||
threshold_type char(12) NOT NULL,
|
||||
threshold_value NUMERIC(20,4) NOT NULL,
|
||||
recurrent BOOLEAN NOT NULL,
|
||||
min_sleep INTEGER NOT NULL,
|
||||
min_sleep BIGINT NOT NULL,
|
||||
destination_tag VARCHAR(64) NOT NULL,
|
||||
balance_weight NUMERIC(8,2) NOT NULL,
|
||||
balance_expiry_time VARCHAR(24) NOT NULL,
|
||||
|
||||
Reference in New Issue
Block a user