mirror of
https://github.com/Troplo/Colubrina.git
synced 2024-11-22 19:27:55 +11:00
20 lines
457 B
JavaScript
20 lines
457 B
JavaScript
"use strict"
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.addColumn("Users", "status", {
|
|
type: Sequelize.ENUM(["online", "busy", "away", "offline", "invisible"]),
|
|
allowNull: false,
|
|
defaultValue: "offline"
|
|
})
|
|
},
|
|
|
|
down: async (queryInterface, Sequelize) => {
|
|
/**
|
|
* Add reverting commands here.
|
|
*
|
|
* Example:
|
|
* await queryInterface.dropTable('users');
|
|
*/
|
|
}
|
|
}
|