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

13 lines
402 B

CREATE TABLE dispatcher (
id INTEGER PRIMARY KEY NOT NULL,
setid INTEGER DEFAULT 0 NOT NULL,
destination VARCHAR(192) DEFAULT '' NOT NULL,
flags INTEGER DEFAULT 0 NOT NULL,
priority INTEGER DEFAULT 0 NOT NULL,
attrs VARCHAR(128) DEFAULT '' NOT NULL,
description VARCHAR(64) DEFAULT '' NOT NULL
);
INSERT INTO version (table_name, table_version) values ('dispatcher','4');