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

17 lines
661 B

CREATE TABLE `usr_preferences` (
`id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
`uuid` VARCHAR(64) DEFAULT '' NOT NULL,
`username` VARCHAR(255) DEFAULT 0 NOT NULL,
`domain` VARCHAR(64) DEFAULT '' NOT NULL,
`attribute` VARCHAR(32) DEFAULT '' NOT NULL,
`type` INT(11) DEFAULT 0 NOT NULL,
`value` VARCHAR(128) DEFAULT '' NOT NULL,
`last_modified` DATETIME DEFAULT '2000-01-01 00:00:01' NOT NULL
);
CREATE INDEX ua_idx ON usr_preferences (`uuid`, `attribute`);
CREATE INDEX uda_idx ON usr_preferences (`username`, `domain`, `attribute`);
INSERT INTO version (table_name, table_version) values ('usr_preferences','2');