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

12 lines
300 B

CREATE TABLE cpl (
id SERIAL PRIMARY KEY NOT NULL,
username VARCHAR(64) NOT NULL,
domain VARCHAR(64) DEFAULT '' NOT NULL,
cpl_xml TEXT,
cpl_bin TEXT,
CONSTRAINT cpl_account_idx UNIQUE (username, domain)
);
INSERT INTO version (table_name, table_version) values ('cpl','1');