/usr/share/opensips/postgres/load_balancer-create.sql is in opensips-postgres-module 2.2.2-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | INSERT INTO version (table_name, table_version) values ('load_balancer','2');
CREATE TABLE load_balancer (
id SERIAL PRIMARY KEY NOT NULL,
group_id INTEGER DEFAULT 0 NOT NULL,
dst_uri VARCHAR(128) NOT NULL,
resources VARCHAR(255) NOT NULL,
probe_mode INTEGER DEFAULT 0 NOT NULL,
description VARCHAR(128) DEFAULT '' NOT NULL
);
ALTER SEQUENCE load_balancer_id_seq MAXVALUE 2147483647 CYCLE;
CREATE INDEX load_balancer_dsturi_idx ON load_balancer (dst_uri);
|