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

12 lines
351 B

CREATE TABLE htable (
id SERIAL PRIMARY KEY NOT NULL,
key_name VARCHAR(64) DEFAULT '' NOT NULL,
key_type INTEGER DEFAULT 0 NOT NULL,
value_type INTEGER DEFAULT 0 NOT NULL,
key_value VARCHAR(128) DEFAULT '' NOT NULL,
expires INTEGER DEFAULT 0 NOT NULL
);
INSERT INTO version (table_name, table_version) values ('htable','2');