summaryrefslogtreecommitdiff
path: root/lib/migrations/20171009121200-longtext-for-mysql.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/migrations/20171009121200-longtext-for-mysql.js')
-rw-r--r--lib/migrations/20171009121200-longtext-for-mysql.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/migrations/20171009121200-longtext-for-mysql.js b/lib/migrations/20171009121200-longtext-for-mysql.js
index cb9fc8a5..96bf7e87 100644
--- a/lib/migrations/20171009121200-longtext-for-mysql.js
+++ b/lib/migrations/20171009121200-longtext-for-mysql.js
@@ -1,16 +1,16 @@
'use strict'
module.exports = {
- up: function (queryInterface, Sequelize) {
- queryInterface.changeColumn('Notes', 'content', { type: Sequelize.TEXT('long') })
- queryInterface.changeColumn('Revisions', 'patch', { type: Sequelize.TEXT('long') })
- queryInterface.changeColumn('Revisions', 'content', { type: Sequelize.TEXT('long') })
- queryInterface.changeColumn('Revisions', 'lastContent', { type: Sequelize.TEXT('long') })
+ up: async function (queryInterface, Sequelize) {
+ await queryInterface.changeColumn('Notes', 'content', { type: Sequelize.TEXT('long') })
+ await queryInterface.changeColumn('Revisions', 'patch', { type: Sequelize.TEXT('long') })
+ await queryInterface.changeColumn('Revisions', 'content', { type: Sequelize.TEXT('long') })
+ await queryInterface.changeColumn('Revisions', 'lastContent', { type: Sequelize.TEXT('long') })
},
- down: function (queryInterface, Sequelize) {
- queryInterface.changeColumn('Notes', 'content', { type: Sequelize.TEXT })
- queryInterface.changeColumn('Revisions', 'patch', { type: Sequelize.TEXT })
- queryInterface.changeColumn('Revisions', 'content', { type: Sequelize.TEXT })
- queryInterface.changeColumn('Revisions', 'lastContent', { type: Sequelize.TEXT })
+ down: async function (queryInterface, Sequelize) {
+ await queryInterface.changeColumn('Notes', 'content', { type: Sequelize.TEXT })
+ await queryInterface.changeColumn('Revisions', 'patch', { type: Sequelize.TEXT })
+ await queryInterface.changeColumn('Revisions', 'content', { type: Sequelize.TEXT })
+ await queryInterface.changeColumn('Revisions', 'lastContent', { type: Sequelize.TEXT })
}
}