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

15 lines
437 B

CREATE TABLE `dialplan` (
`id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
`dpid` INT(11) NOT NULL,
`pr` INT(11) NOT NULL,
`match_op` INT(11) NOT NULL,
`match_exp` VARCHAR(64) NOT NULL,
`match_len` INT(11) NOT NULL,
`subst_exp` VARCHAR(64) NOT NULL,
`repl_exp` VARCHAR(256) NOT NULL,
`attrs` VARCHAR(64) NOT NULL
);
INSERT INTO version (table_name, table_version) values ('dialplan','2');