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

24 lines
945 B

CREATE TABLE `sip_trace` (
`id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
`time_stamp` DATETIME DEFAULT '2000-01-01 00:00:01' NOT NULL,
`time_us` INT UNSIGNED DEFAULT 0 NOT NULL,
`callid` VARCHAR(255) DEFAULT '' NOT NULL,
`traced_user` VARCHAR(255) DEFAULT '' NOT NULL,
`msg` MEDIUMTEXT NOT NULL,
`method` VARCHAR(50) DEFAULT '' NOT NULL,
`status` VARCHAR(255) DEFAULT '' NOT NULL,
`fromip` VARCHAR(64) DEFAULT '' NOT NULL,
`toip` VARCHAR(64) DEFAULT '' NOT NULL,
`fromtag` VARCHAR(128) DEFAULT '' NOT NULL,
`totag` VARCHAR(128) DEFAULT '' NOT NULL,
`direction` VARCHAR(4) DEFAULT '' NOT NULL
);
CREATE INDEX traced_user_idx ON sip_trace (`traced_user`);
CREATE INDEX date_idx ON sip_trace (`time_stamp`);
CREATE INDEX fromip_idx ON sip_trace (`fromip`);
CREATE INDEX callid_idx ON sip_trace (`callid`);
INSERT INTO version (table_name, table_version) values ('sip_trace','4');