Colubrina/backend/migrations/20220526072731-replying.js

20 lines
372 B
JavaScript

"use strict"
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.addColumn("messages", "replyId", {
type: Sequelize.BIGINT,
defaultValue: null
})
},
async down(queryInterface, Sequelize) {
/**
* Add reverting commands here.
*
* Example:
* await queryInterface.dropTable('users');
*/
}
}