Updated Postgres script for DispatcherHosts tariffplans

This commit is contained in:
nickolasdaniel
2021-07-20 10:14:37 +03:00
committed by Dan Christian Bogos
parent a40f39ce56
commit 8c45a83e70

View File

@@ -448,7 +448,15 @@ CREATE INDEX tp_routes_unique ON tp_routes ("tpid", "tenant", "id",
"id" varchar(64) NOT NULL,
"address" varchar(64) NOT NULL,
"transport" varchar(64) NOT NULL,
"synchronous" BOOLEAN NOT NULL,
"connect_attempts" INTEGER NOT NULL,
"reconnects" INTEGER NOT NULL,
"connect_timeout" varchar(64) NOT NULL,
"reply_timeout" varchar(64) NOT NULL,
"tls" BOOLEAN NOT NULL,
"client_key" varchar(64) NOT NULL,
"client_certificate" varchar(64) NOT NULL,
"ca_certificate" varchar(64) NOT NULL,
"created_at" TIMESTAMP WITH TIME ZONE
);
CREATE INDEX tp_dispatchers_hosts_ids ON tp_dispatcher_hosts (tpid);