summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lib/migrations/20180209120907-longtext-of-authorship.js13
-rw-r--r--lib/models/note.js2
-rw-r--r--lib/models/revision.js2
3 files changed, 15 insertions, 2 deletions
diff --git a/lib/migrations/20180209120907-longtext-of-authorship.js b/lib/migrations/20180209120907-longtext-of-authorship.js
new file mode 100644
index 00000000..4cca5444
--- /dev/null
+++ b/lib/migrations/20180209120907-longtext-of-authorship.js
@@ -0,0 +1,13 @@
+'use strict'
+
+module.exports = {
+ up: function (queryInterface, Sequelize) {
+ queryInterface.changeColumn('Notes', 'authorship', {type: Sequelize.TEXT('long')})
+ queryInterface.changeColumn('Revisions', 'authorship', {type: Sequelize.TEXT('long')})
+ },
+
+ down: function (queryInterface, Sequelize) {
+ queryInterface.changeColumn('Notes', 'authorship', {type: Sequelize.TEXT})
+ queryInterface.changeColumn('Revisions', 'authorship', {type: Sequelize.TEXT})
+ }
+}
diff --git a/lib/models/note.js b/lib/models/note.js
index 33dde80d..484f1a8c 100644
--- a/lib/models/note.js
+++ b/lib/models/note.js
@@ -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)
},
diff --git a/lib/models/revision.js b/lib/models/revision.js
index 170931b8..9ecd14dc 100644
--- a/lib/models/revision.js
+++ b/lib/models/revision.js
@@ -88,7 +88,7 @@ module.exports = function (sequelize, DataTypes) {
type: DataTypes.INTEGER
},
authorship: {
- type: DataTypes.TEXT,
+ type: DataTypes.TEXT('long'),
get: function () {
return sequelize.processData(this.getDataValue('authorship'), [], JSON.parse)
},