'use strict'; module.exports = { up: async (queryInterface, Sequelize) => { await queryInterface.addColumn('assets', 'thumbnail_storage_key', { type: Sequelize.STRING(512), allowNull: true, after: 'thumbnail_url', }); }, down: async (queryInterface) => { await queryInterface.removeColumn('assets', 'thumbnail_storage_key'); }, };