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

12 lines
354 B

CREATE TABLE uid_global_attrs (
id SERIAL PRIMARY KEY NOT NULL,
name VARCHAR(32) NOT NULL,
type INTEGER DEFAULT 0 NOT NULL,
value VARCHAR(128),
flags INTEGER DEFAULT 0 NOT NULL,
CONSTRAINT uid_global_attrs_global_attrs_idx UNIQUE (name, value)
);
INSERT INTO version (table_name, table_version) values ('uid_global_attrs','1');