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/modules/iptrtpproxy/oob/rtpproxy_attrs.sql

11 lines
221 B

CREATE TABLE rtpproxy_attrs (
id VARCHAR(256) NOT NULL,
name VARCHAR(32) NOT NULL,
value VARCHAR(255),
type INT NOT NULL DEFAULT '0',
flags INT NOT NULL DEFAULT '0',
PRIMARY KEY (id,name)
);