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

21 lines
704 B

CREATE TABLE `silo` (
`id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
`src_addr` VARCHAR(255) DEFAULT '' NOT NULL,
`dst_addr` VARCHAR(255) DEFAULT '' NOT NULL,
`username` VARCHAR(64) DEFAULT '' NOT NULL,
`domain` VARCHAR(64) DEFAULT '' NOT NULL,
`inc_time` INT DEFAULT 0 NOT NULL,
`exp_time` INT DEFAULT 0 NOT NULL,
`snd_time` INT DEFAULT 0 NOT NULL,
`ctype` VARCHAR(32) DEFAULT 'text/plain' NOT NULL,
`body` BLOB,
`extra_hdrs` TEXT,
`callid` VARCHAR(128) DEFAULT '' NOT NULL,
`status` INT DEFAULT 0 NOT NULL
);
CREATE INDEX account_idx ON silo (`username`, `domain`);
INSERT INTO version (table_name, table_version) values ('silo','8');