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

20 lines
725 B

INSERT INTO version (table_name, table_version) values ('silo','7');
CREATE TABLE silo (
id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
src_addr VARCHAR(128) DEFAULT '' NOT NULL,
dst_addr VARCHAR(128) 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 DEFAULT '' NOT NULL,
extra_hdrs TEXT DEFAULT '' NOT NULL,
callid VARCHAR(128) DEFAULT '' NOT NULL,
status INT DEFAULT 0 NOT NULL
) ENGINE=MyISAM;
CREATE INDEX account_idx ON silo (username, domain);