mirror of
https://github.com/Troplo/Colubrina.git
synced 2024-11-23 03:36:42 +11:00
23 lines
499 B
JavaScript
23 lines
499 B
JavaScript
"use strict"
|
|
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("Users", "emailVerified", {
|
|
type: Sequelize.BOOLEAN,
|
|
defaultValue: false
|
|
})
|
|
await queryInterface.addColumn("Users", "emailToken", {
|
|
type: Sequelize.STRING,
|
|
defaultValue: null
|
|
})
|
|
},
|
|
|
|
async down(queryInterface, Sequelize) {
|
|
/**
|
|
* Add reverting commands here.
|
|
*
|
|
* Example:
|
|
* await queryInterface.dropTable('users');
|
|
*/
|
|
}
|
|
}
|