From 6280e92d1042967e16e68a50b6364de566e266ef Mon Sep 17 00:00:00 2001 From: chandi Date: Mon, 12 Aug 2019 14:08:31 +0200 Subject: fix: migration should return promise Signed-off-by: chandi --- lib/migrations/20171009121200-longtext-for-mysql.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'lib/migrations/20171009121200-longtext-for-mysql.js') 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 }) } } -- cgit v1.2.3