From cc49ce55c8fdc5237d1b45c75df991cb958b46d9 Mon Sep 17 00:00:00 2001 From: Claudius Coenen Date: Mon, 16 Oct 2017 10:12:39 +0200 Subject: Fix #521 by converting content fields to LONGTEXT in MySQL, to prevent truncation of data. --- lib/models/revision.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/models/revision.js') diff --git a/lib/models/revision.js b/lib/models/revision.js index 225a95d4..32c57d03 100644 --- a/lib/models/revision.js +++ b/lib/models/revision.js @@ -58,7 +58,7 @@ module.exports = function (sequelize, DataTypes) { defaultValue: Sequelize.UUIDV4 }, patch: { - type: DataTypes.TEXT, + type: DataTypes.TEXT('long'), get: function () { return sequelize.processData(this.getDataValue('patch'), '') }, @@ -67,7 +67,7 @@ module.exports = function (sequelize, DataTypes) { } }, lastContent: { - type: DataTypes.TEXT, + type: DataTypes.TEXT('long'), get: function () { return sequelize.processData(this.getDataValue('lastContent'), '') }, @@ -76,7 +76,7 @@ module.exports = function (sequelize, DataTypes) { } }, content: { - type: DataTypes.TEXT, + type: DataTypes.TEXT('long'), get: function () { return sequelize.processData(this.getDataValue('content'), '') }, -- cgit v1.2.3