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

17 lines
660 B

CREATE TABLE usr_preferences (
id INTEGER PRIMARY KEY NOT NULL,
uuid VARCHAR(64) DEFAULT '' NOT NULL,
username VARCHAR(255) DEFAULT 0 NOT NULL,
domain VARCHAR(64) DEFAULT '' NOT NULL,
attribute VARCHAR(32) DEFAULT '' NOT NULL,
type INTEGER DEFAULT 0 NOT NULL,
value VARCHAR(128) DEFAULT '' NOT NULL,
last_modified TIMESTAMP WITHOUT TIME ZONE DEFAULT '2000-01-01 00:00:01' NOT NULL
);
CREATE INDEX usr_preferences_ua_idx ON usr_preferences (uuid, attribute);
CREATE INDEX usr_preferences_uda_idx ON usr_preferences (username, domain, attribute);
INSERT INTO version (table_name, table_version) values ('usr_preferences','2');