'use strict'; module.exports = { up: (queryInterface, Sequelize) => { return queryInterface.createTable('postnotifications', { id: { type: Sequelize.INTEGER, primaryKey: true, autoIncrement: true }, createdAt: Sequelize.DATE, updatedAt: Sequelize.DATE, UserId: Sequelize.INTEGER, PostId: Sequelize.INTEGER, NotificationId: Sequelize.INTEGER }, { charset: 'utf8mb4' }) }, down: (queryInterface, Sequelize) => { return queryInterface.dropTable('postnotifications'); } };