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

14 lines
390 B

INSERT INTO version (table_name, table_version) values ('dialplan','1');
CREATE TABLE dialplan (
id SERIAL PRIMARY KEY NOT NULL,
dpid INTEGER NOT NULL,
pr INTEGER NOT NULL,
match_op INTEGER NOT NULL,
match_exp VARCHAR(64) NOT NULL,
match_len INTEGER NOT NULL,
subst_exp VARCHAR(64) NOT NULL,
repl_exp VARCHAR(32) NOT NULL,
attrs VARCHAR(32) NOT NULL
);