mirror of
https://github.com/Troplo/Colubrina.git
synced 2024-11-23 03:36:42 +11:00
25 lines
480 B
JavaScript
25 lines
480 B
JavaScript
|
"use strict"
|
||
|
|
||
|
module.exports = {
|
||
|
up: async (queryInterface, Sequelize) => {
|
||
|
// modify status column
|
||
|
await queryInterface.changeColumn("friends", "status", {
|
||
|
type: Sequelize.ENUM([
|
||
|
"pending",
|
||
|
"pendingCanAccept",
|
||
|
"accepted",
|
||
|
"rejected"
|
||
|
])
|
||
|
})
|
||
|
},
|
||
|
|
||
|
down: async (queryInterface, Sequelize) => {
|
||
|
/**
|
||
|
* Add reverting commands here.
|
||
|
*
|
||
|
* Example:
|
||
|
* await queryInterface.dropTable('users');
|
||
|
*/
|
||
|
}
|
||
|
}
|