/** @type {import('sequelize-cli').Migration} */ module.exports = { async up (queryInterface, Sequelize) { await queryInterface.createTable('PlayerTeams', { id: { allowNull: false, autoIncrement: true, primaryKey: true, type: Sequelize.INTEGER }, playerId: { type: Sequelize.INTEGER, references: { model: 'Players', key: 'id' } }, teamId: { type: Sequelize.INTEGER, references: { model: 'Teams', key: 'id' } }, createdAt: { allowNull: false, type: Sequelize.DATE }, updatedAt: { allowNull: false, type: Sequelize.DATE } }); }, async down (queryInterface, Sequelize) { await queryInterface.dropTable('PlayerTeams'); } };