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

11 lines
249 B

CREATE TABLE `matrix` (
`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');