'use strict'; /** @type {import('sequelize-cli').Migration} */ module.exports = { async up (queryInterface, Sequelize) { await queryInterface.createTable('Config', { id: { allowNull: false, autoIncrement: true, primaryKey: true, type: Sequelize.INTEGER }, startingDateRaid: { type: Sequelize.INTEGER } }); }, async down (queryInterface, Sequelize) { await queryInterface.dropTable('Config'); } };