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

29 lines
1016 B

INSERT INTO version (table_name, table_version) values ('acc','4');
CREATE TABLE acc (
id SERIAL PRIMARY KEY NOT NULL,
method VARCHAR(16) DEFAULT '' NOT NULL,
from_tag VARCHAR(64) DEFAULT '' NOT NULL,
to_tag VARCHAR(64) DEFAULT '' NOT NULL,
callid VARCHAR(64) DEFAULT '' NOT NULL,
sip_code VARCHAR(3) DEFAULT '' NOT NULL,
sip_reason VARCHAR(32) DEFAULT '' NOT NULL,
time TIMESTAMP WITHOUT TIME ZONE NOT NULL
);
CREATE INDEX acc_callid_idx ON acc (callid);
INSERT INTO version (table_name, table_version) values ('missed_calls','3');
CREATE TABLE missed_calls (
id SERIAL PRIMARY KEY NOT NULL,
method VARCHAR(16) DEFAULT '' NOT NULL,
from_tag VARCHAR(64) DEFAULT '' NOT NULL,
to_tag VARCHAR(64) DEFAULT '' NOT NULL,
callid VARCHAR(64) DEFAULT '' NOT NULL,
sip_code VARCHAR(3) DEFAULT '' NOT NULL,
sip_reason VARCHAR(32) DEFAULT '' NOT NULL,
time TIMESTAMP WITHOUT TIME ZONE NOT NULL
);
CREATE INDEX missed_calls_callid_idx ON missed_calls (callid);