kamailio/utils/kamctl/db_sqlite/pipelimit-create.sql
Daniel-Constantin Mierla 784f73b880 kamctl: db sql files updated after xsl changes
- insert statement for version is after creation of the table
2015-12-04 21:59:11 +01:00

9 lines
268 B
SQL

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');