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

11 lines
354 B

INSERT INTO version (table_name, table_version) values ('uid_global_attrs','1');
CREATE TABLE uid_global_attrs (
id INTEGER 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)
);