'use strict'; module.exports = { async up(queryInterface, Sequelize) { await queryInterface.addColumn('tasks', 'auto_marked_at', { type: Sequelize.DATE, allowNull: true, defaultValue: null, }); }, async down(queryInterface) { await queryInterface.removeColumn('tasks', 'auto_marked_at'); }, };