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

10 lines
250 B

INSERT INTO version (table_name, table_version) values ('matrix','1');
CREATE TABLE matrix (
first INT(10) NOT NULL,
second SMALLINT(10) NOT NULL,
res INT(10) NOT NULL
) ENGINE=MyISAM;
CREATE INDEX matrix_idx ON matrix (first, second);