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

23 lines
914 B

CREATE TABLE `uacreg` (
`id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
`l_uuid` VARCHAR(64) DEFAULT '' NOT NULL,
`l_username` VARCHAR(64) DEFAULT '' NOT NULL,
`l_domain` VARCHAR(64) DEFAULT '' NOT NULL,
`r_username` VARCHAR(64) DEFAULT '' NOT NULL,
`r_domain` VARCHAR(64) DEFAULT '' NOT NULL,
`realm` VARCHAR(64) DEFAULT '' NOT NULL,
`auth_username` VARCHAR(64) DEFAULT '' NOT NULL,
`auth_password` VARCHAR(64) DEFAULT '' NOT NULL,
`auth_ha1` VARCHAR(128) DEFAULT '' NOT NULL,
`auth_proxy` VARCHAR(255) DEFAULT '' NOT NULL,
`expires` INT DEFAULT 0 NOT NULL,
`flags` INT DEFAULT 0 NOT NULL,
`reg_delay` INT DEFAULT 0 NOT NULL,
`contact_addr` VARCHAR(255) DEFAULT '' NOT NULL,
`socket` VARCHAR(128) DEFAULT '' NOT NULL,
CONSTRAINT l_uuid_idx UNIQUE (`l_uuid`)
);
INSERT INTO version (table_name, table_version) values ('uacreg','5');