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,