'use strict'; module.exports = { async up(queryInterface, Sequelize) { await queryInterface.createTable('orderNotifications', { id: { allowNull: false, autoIncrement: true, primaryKey: true, type: Sequelize.INTEGER }, storeId: { type: Sequelize.INTEGER }, messageDetail: { type: Sequelize.TEXT }, status: { type: Sequelize.INTEGER }, createdBy: { type: Sequelize.INTEGER }, updatedBy: { type: Sequelize.INTEGER }, createdAt: { allowNull: false, type: Sequelize.DATE }, updatedAt: { allowNull: false, type: Sequelize.DATE } }); }, async down(queryInterface, Sequelize) { await queryInterface.dropTable('orderNotifications'); } };