From 5d437a96310d07aca02b4725acfee4fc2d6aafc7 Mon Sep 17 00:00:00 2001 From: TeoV Date: Thu, 19 Nov 2020 11:03:16 +0200 Subject: [PATCH] Update scripts for creating offline db schema --- data/storage/mysql/create_tariffplan_tables.sql | 1 + data/storage/postgres/create_tariffplan_tables.sql | 1 + 2 files changed, 2 insertions(+) diff --git a/data/storage/mysql/create_tariffplan_tables.sql b/data/storage/mysql/create_tariffplan_tables.sql index 8c4e20a71..2b841f646 100644 --- a/data/storage/mysql/create_tariffplan_tables.sql +++ b/data/storage/mysql/create_tariffplan_tables.sql @@ -358,6 +358,7 @@ CREATE TABLE tp_routes ( `route_filter_ids` varchar(64) NOT NULL, `route_account_ids` varchar(64) NOT NULL, `route_ratingplan_ids` varchar(64) NOT NULL, + `route_rate_profile_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, diff --git a/data/storage/postgres/create_tariffplan_tables.sql b/data/storage/postgres/create_tariffplan_tables.sql index 661a46883..dffe7f234 100644 --- a/data/storage/postgres/create_tariffplan_tables.sql +++ b/data/storage/postgres/create_tariffplan_tables.sql @@ -350,6 +350,7 @@ CREATE TABLE tp_routes ( "route_filter_ids" varchar(64) NOT NULL, "route_account_ids" varchar(64) NOT NULL, "route_ratingplan_ids" varchar(64) NOT NULL, + "route_rate_profile_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,