Colubrina/backend/migrations/20220806071918-notifications.js
2022-08-06 19:22:21 +10:00

20 lines
438 B
JavaScript

"use strict"
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.addColumn("ChatAssociations", "notifications", {
type: Sequelize.ENUM(["all", "none", "mentions"]),
defaultValue: "all",
allowNull: false
})
},
async down(queryInterface, Sequelize) {
/**
* Add reverting commands here.
*
* Example:
* await queryInterface.dropTable('users');
*/
}
}