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

10 lines
310 B

INSERT INTO version (table_name, table_version) values ('htable','1');
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
);