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

12 lines
378 B

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