"use strict"; /** @type {import('sequelize-cli').Migration} */ module.exports = { async up(queryInterface, Sequelize) { await queryInterface.addColumn("shares", "showLastUpdated", { type: Sequelize.BOOLEAN, allowNull: false, defaultValue: false, }); }, async down(queryInterface, Sequelize) { await queryInterface.removeColumn("shares", "showLastUpdated"); }, };