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

Commit d2a6029

Browse files
committed
Switch to blob for ajxp_mq_queues
1 parent 25e19b8 commit d2a6029

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/php/6.5.3.mysql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ CREATE INDEX ajxp_task_nodes_idx ON ajxp_tasks (nodes);
3535
/* SEPARATOR */
3636
CREATE TABLE IF NOT EXISTS `ajxp_mq_queues` (
3737
`channel_name` varchar(255) NOT NULL,
38-
`content` text NOT NULL,
38+
`content` BLOB NOT NULL,
3939
PRIMARY KEY (`channel_name`)
4040
) DEFAULT CHARSET=utf8;
4141
/* SEPARATOR */

dist/php/6.5.3.pgsql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ CREATE INDEX ajxp_task_nodes_idx ON ajxp_tasks (nodes);
3434
/* SEPARATOR */
3535
CREATE TABLE IF NOT EXISTS ajxp_mq_queues (
3636
channel_name varchar(255) NOT NULL,
37-
content text NOT NULL,
37+
content BLOB NOT NULL,
3838
PRIMARY KEY (channel_name)
3939
);

dist/php/6.5.3.sqlite

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ CREATE INDEX ajxp_task_nodes_idx ON ajxp_tasks (nodes);
3333
/* SEPARATOR */
3434
CREATE TABLE IF NOT EXISTS ajxp_mq_queues (
3535
channel_name varchar(255) NOT NULL,
36-
content text NOT NULL,
36+
content BLOB NOT NULL,
3737
PRIMARY KEY (`channel_name`)
3838
);

0 commit comments

Comments
 (0)