You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/utils/kamctl/postgres/rtpproxy-create.sql

12 lines
347 B

CREATE TABLE rtpproxy (
id SERIAL PRIMARY KEY NOT NULL,
setid VARCHAR(32) DEFAULT 00 NOT NULL,
url VARCHAR(64) DEFAULT '' NOT NULL,
flags INTEGER DEFAULT 0 NOT NULL,
weight INTEGER DEFAULT 1 NOT NULL,
description VARCHAR(64) DEFAULT '' NOT NULL
);
INSERT INTO version (table_name, table_version) values ('rtpproxy','1');