Colubrina/backend/migrations/20220526072731-replying.js
2022-06-05 22:58:18 +10:00

19 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');
*/
}
}