You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i'm facing following error. I don't what is wrong..
What you are doing?
I'm trying to run a migration:
20170420000245-alter-table-for-idea.js
'use strict';constParticipation=require('../models/').Participation;module.exports={up: (queryInterface,Sequelize,done)=>{returnqueryInterface.sequelize.query(`ALTER TABLE "${Participation.getTableName()}" ALTER COLUMN "introduction" TYPE text;`).then(()=>done());},down: (queryInterface,Sequelize,done)=>{returnqueryInterface.sequelize.query(`ALTER TABLE "${Participation.getTableName()}" ALTER COLUMN "introduction" TYPE text;`).then(()=>done());}};
What do you expect to happen?
I was expecting the migration to run successfully.
Hi, i'm facing following error. I don't what is wrong..
What you are doing?
I'm trying to run a migration:
20170420000245-alter-table-for-idea.js
What do you expect to happen?
I was expecting the migration to run successfully.
What is actually happening?
Dialect: postgres
Database version: 9.3
Sequelize CLI version: 2.7
sequelize version: 3.30.4
node version: 6.10.2
The text was updated successfully, but these errors were encountered: