'use strict'; module.exports = { async up(queryInterface, Sequelize) { await queryInterface.createTable('DropHistories', { id: { allowNull: false, autoIncrement: true, primaryKey: true, type: Sequelize.INTEGER }, dropData: { type: Sequelize.JSON }, createdAt: { allowNull: false, type: Sequelize.DATE }, updatedAt: { allowNull: false, type: Sequelize.DATE } }); }, async down(queryInterface, Sequelize) { await queryInterface.dropTable('DropHistories'); } };