diff --git a/core/src/plugins/mq.sql/create.mysql b/core/src/plugins/mq.sql/create.mysql index a049c2c29d..9d5053d713 100644 --- a/core/src/plugins/mq.sql/create.mysql +++ b/core/src/plugins/mq.sql/create.mysql @@ -1,5 +1,5 @@ CREATE TABLE IF NOT EXISTS `ajxp_mq_queues` ( `channel_name` varchar(255) NOT NULL, - `content` BLOB NOT NULL, + `content` LONGBLOB NOT NULL, PRIMARY KEY (`channel_name`) ) CHARACTER SET utf8 COLLATE utf8_unicode_ci; \ No newline at end of file diff --git a/dist/php/6.5.4.mysql b/dist/php/6.5.4.mysql index b529e2f4ab..b9538f9bb5 100644 --- a/dist/php/6.5.4.mysql +++ b/dist/php/6.5.4.mysql @@ -33,9 +33,11 @@ CREATE INDEX ajxp_task_schedule ON ajxp_tasks (schedule); /* SEPARATOR */ CREATE INDEX ajxp_task_nodes_idx ON ajxp_tasks (nodes); /* SEPARATOR */ +DROP TABLE IF EXISTS `ajxp_mq_queues`; +/* SEPARATOR */ CREATE TABLE IF NOT EXISTS `ajxp_mq_queues` ( `channel_name` varchar(255) NOT NULL, - `content` BLOB NOT NULL, + `content` LONGBLOB NOT NULL, PRIMARY KEY (`channel_name`) ) DEFAULT CHARSET=utf8; /* SEPARATOR */