I have a databse where i created a "version" table only with a version, a dispatcher records. I only want to use dispatcher on a db.
I don't know if kamailio is looking for the version tables somewhere else, or it does find it in my database (not named kamailio) but the format is wrong.
CREATE TABLE `version` (
`table_name` VARCHAR(32) NOT NULL,
`table_version` INT UNSIGNED DEFAULT 0 NOT NULL,
CONSTRAINT table_name_idx UNIQUE (`table_name`)
);
INSERT INTO version (table_name, table_version) values ('version','1');
INSERT INTO version (table_name, table_version) values ('dispatcher','4');