"use strict"; /** @type {import('sequelize-cli').Migration} */ module.exports = { async up(queryInterface, Sequelize) { await queryInterface.addColumn("documents", "language", { type: Sequelize.STRING(2), allowNull: true, }); }, async down(queryInterface, Sequelize) { await queryInterface.removeColumn("documents", "language"); }, };