Jeremy Black

Results 2 comments of Jeremy Black

Having same problem as StlthyLee, columns get added okay, but not removed: ```javascript module.exports = { up: (queryInterface, Sequelize) => { queryInterface.addColumn( 'tableName', 'custom_entity_id', Sequelize.INTEGER ); queryInterface.addColumn( 'tableName', 'custom_entity_field_id', Sequelize.INTEGER...

@harmon You nailed it! Thanks very much. For anyone finding this page, I wrapped my queries in Promise.all like so: ```javascript module.exports = { up: (queryInterface, Sequelize) => { return...