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

16 lines
642 B

CREATE TABLE `speed_dial` (
`id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
`username` VARCHAR(64) DEFAULT '' NOT NULL,
`domain` VARCHAR(64) DEFAULT '' NOT NULL,
`sd_username` VARCHAR(64) DEFAULT '' NOT NULL,
`sd_domain` VARCHAR(64) DEFAULT '' NOT NULL,
`new_uri` VARCHAR(255) DEFAULT '' NOT NULL,
`fname` VARCHAR(64) DEFAULT '' NOT NULL,
`lname` VARCHAR(64) DEFAULT '' NOT NULL,
`description` VARCHAR(64) DEFAULT '' NOT NULL,
CONSTRAINT speed_dial_idx UNIQUE (`username`, `domain`, `sd_domain`, `sd_username`)
);
INSERT INTO version (table_name, table_version) values ('speed_dial','2');