"use strict"; /** @type {import('sequelize-cli').Migration} */ module.exports = { async up(queryInterface, Sequelize) { await queryInterface.addColumn("revisions", "collaboratorIds", { type: Sequelize.ARRAY(Sequelize.UUID), allowNull: false, defaultValue: [], }); }, async down(queryInterface, Sequelize) { await queryInterface.removeColumn("revisions", "collaboratorIds"); }, };