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

9 lines
301 B

INSERT INTO version (table_name, table_version) values ('pl_pipes','1');
CREATE TABLE pl_pipes (
id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
pipeid VARCHAR(64) DEFAULT '' NOT NULL,
algorithm VARCHAR(32) DEFAULT '' NOT NULL,
plimit INT DEFAULT 0 NOT NULL
) ENGINE=MyISAM;