Updated Routes with DynamicWeights

This commit is contained in:
Trial97
2021-08-30 17:00:37 +03:00
committed by Dan Christian Bogos
parent 76bc9f0cd8
commit a5d95f9fe7
52 changed files with 1208 additions and 1266 deletions

View File

@@ -113,10 +113,10 @@ CREATE TABLE tp_routes (
"route_ratingplan_ids" varchar(64) NOT NULL,
"route_resource_ids" varchar(64) NOT NULL,
"route_stat_ids" varchar(64) NOT NULL,
"route_weight" decimal(8,2) NOT NULL,
"route_weights" varchar(64) NOT NULL,
"route_blocker" BOOLEAN NOT NULL,
"route_parameters" varchar(64) NOT NULL,
"weight" decimal(8,2) NOT NULL,
"weights" varchar(64) NOT NULL,
"created_at" TIMESTAMP WITH TIME ZONE
);
CREATE INDEX tp_routes_idx ON tp_routes (tpid);