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

14 lines
429 B

INSERT INTO version (table_name, table_version) values ('dialplan','1');
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(32) NOT NULL,
attrs VARCHAR(32) NOT NULL
) ENGINE=MyISAM;