'use strict'; module.exports = { async up(queryInterface, Sequelize) { await queryInterface.addColumn('Users', 'resetToken', { type: Sequelize.STRING, allowNull: true, after: 'password' }); await queryInterface.addColumn('Users', 'resetTokenExpiry', { type: Sequelize.DATE, allowNull: true, after: 'resetToken' }); }, async down(queryInterface, Sequelize) { await queryInterface.removeColumn('Users', 'resetToken'); await queryInterface.removeColumn('Users', 'resetTokenExpiry'); } };