kamailio/utils/kamctl/db_sqlite/mtree-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

19 lines
621 B
SQL

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