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

12 lines
312 B

CREATE TABLE `matrix` (
`id` INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
`first` INT(10) NOT NULL,
`second` SMALLINT(10) NOT NULL,
`res` INT(10) NOT NULL
);
CREATE INDEX matrix_idx ON matrix (`first`, `second`);
INSERT INTO version (table_name, table_version) values ('matrix','1');