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/pipelimit-create.sql

10 lines
267 B

CREATE TABLE pl_pipes (
id SERIAL PRIMARY KEY NOT NULL,
pipeid VARCHAR(64) DEFAULT '' NOT NULL,
algorithm VARCHAR(32) DEFAULT '' NOT NULL,
plimit INTEGER DEFAULT 0 NOT NULL
);
INSERT INTO version (table_name, table_version) values ('pl_pipes','1');