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

12 lines
378 B

CREATE TABLE `rtpproxy` (
`id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
`setid` VARCHAR(32) DEFAULT 00 NOT NULL,
`url` VARCHAR(64) DEFAULT '' NOT NULL,
`flags` INT DEFAULT 0 NOT NULL,
`weight` INT DEFAULT 1 NOT NULL,
`description` VARCHAR(64) DEFAULT '' NOT NULL
);
INSERT INTO version (table_name, table_version) values ('rtpproxy','1');