Colubrina/backend/migrations/20220603090927-messageAttac...

20 lines
416 B
JavaScript

"use strict"
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.addColumn("Attachments", "messageId", {
type: Sequelize.BIGINT
})
await queryInterface.removeColumn("Messages", "attachments")
},
async down(queryInterface, Sequelize) {
/**
* Add reverting commands here.
*
* Example:
* await queryInterface.dropTable('users');
*/
}
}