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

10 lines
268 B

CREATE TABLE pl_pipes (
id INTEGER 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');