/usr/share/kamailio/postgres/mtree-create.sql is in kamailio-postgres-modules 4.4.4-2+deb9u3.
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 13 14 15 16 17 18 | CREATE TABLE mtree (
id SERIAL PRIMARY KEY NOT NULL,
tprefix VARCHAR(32) DEFAULT '' NOT NULL,
tvalue VARCHAR(128) DEFAULT '' NOT NULL,
CONSTRAINT mtree_tprefix_idx UNIQUE (tprefix)
);
INSERT INTO version (table_name, table_version) values ('mtree','1');
CREATE TABLE mtrees (
id SERIAL PRIMARY KEY NOT NULL,
tname VARCHAR(128) DEFAULT '' NOT NULL,
tprefix VARCHAR(32) DEFAULT '' NOT NULL,
tvalue VARCHAR(128) DEFAULT '' NOT NULL,
CONSTRAINT mtrees_tname_tprefix_tvalue_idx UNIQUE (tname, tprefix, tvalue)
);
INSERT INTO version (table_name, table_version) values ('mtrees','2');
|