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

22 lines
686 B

CREATE TABLE grp (
id SERIAL PRIMARY KEY NOT NULL,
username VARCHAR(64) DEFAULT '' NOT NULL,
domain VARCHAR(64) DEFAULT '' NOT NULL,
grp VARCHAR(64) DEFAULT '' NOT NULL,
last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL,
CONSTRAINT grp_account_group_idx UNIQUE (username, domain, grp)
);
INSERT INTO version (table_name, table_version) values ('grp','2');
CREATE TABLE re_grp (
id SERIAL PRIMARY KEY NOT NULL,
reg_exp VARCHAR(128) DEFAULT '' NOT NULL,
group_id INTEGER DEFAULT 0 NOT NULL
);
CREATE INDEX re_grp_group_idx ON re_grp (group_id);
INSERT INTO version (table_name, table_version) values ('re_grp','1');