Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Switch blob to longblob for messages
Browse files Browse the repository at this point in the history
  • Loading branch information
cdujeu committed Oct 6, 2016
1 parent 98151cd commit 35b87fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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;
4 changes: 3 additions & 1 deletion dist/php/6.5.4.mysql
Expand Up @@ -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 */
Expand Down

0 comments on commit 35b87fd

Please sign in to comment.