Colubrina/backend/migrations/20220518100447-friendsStatus.js

21 lines
444 B
JavaScript
Raw Normal View History

2022-06-05 22:58:18 +10:00
"use strict"
module.exports = {
up: async (queryInterface, Sequelize) => {
2022-07-29 21:56:16 +10:00
await queryInterface.addColumn("Friends", "status", {
2022-06-05 22:58:18 +10:00
type: Sequelize.ENUM(["pending", "accepted", "declined"]),
allowNull: false,
defaultValue: "pending"
})
},
down: async (queryInterface, Sequelize) => {
/**
* Add reverting commands here.
*
* Example:
* await queryInterface.dropTable('users');
*/
}
}