Colubrina/backend/migrations/20220526072731-replying.js

20 lines
372 B
JavaScript
Raw Normal View History

2022-06-05 22:58:18 +10:00
"use strict"
module.exports = {
async up(queryInterface, Sequelize) {
2022-07-29 21:56:16 +10:00
await queryInterface.addColumn("Messages", "replyId", {
2022-06-05 22:58:18 +10:00
type: Sequelize.BIGINT,
defaultValue: null
})
},
async down(queryInterface, Sequelize) {
/**
* Add reverting commands here.
*
* Example:
* await queryInterface.dropTable('users');
*/
}
}