Fix field type to prevent data truncation of authorship (#721)

* Fix field type to prevent data truncation of authorship
This commit is contained in:
Max Wu 2018-02-09 21:27:06 +08:00 committed by Christoph (Sheogorath) Kern
parent dfa0851d8f
commit bb5e021f20
3 changed files with 15 additions and 2 deletions

View file

@ -69,7 +69,7 @@ module.exports = function (sequelize, DataTypes) {
}
},
authorship: {
type: DataTypes.TEXT,
type: DataTypes.TEXT('long'),
get: function () {
return sequelize.processData(this.getDataValue('authorship'), [], JSON.parse)
},