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

11 lines
309 B

CREATE TABLE `purplemap` (
`id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
`sip_user` VARCHAR(255) NOT NULL,
`ext_user` VARCHAR(255) NOT NULL,
`ext_prot` VARCHAR(16) NOT NULL,
`ext_pass` VARCHAR(64)
);
INSERT INTO version (table_name, table_version) values ('purplemap','1');