On Fri, Jul 22, 2016 at 02:34:53AM +0530, Gaurav Bmotra wrote:
no i have not use kamdbctl extra i have create these tables (mqueues, mcalls) manualy
That isn't enough, modules check the version table for specific versions of the target tables structures: See mohqueue-create.sql somewhere in the source tree, it contains:
CREATE TABLE `mohqcalls` ( ... );
INSERT INTO version (table_name, table_version) values ('mohqcalls','1');
CREATE TABLE `mohqueues` ( ... );
INSERT INTO version (table_name, table_version) values ('mohqueues','1');