'use strict'; module.exports = { async up(queryInterface, Sequelize) { await queryInterface.createTable('payments', { payment_id: { type: Sequelize.BIGINT, primaryKey: true, autoIncrement: true }, user_id: { type: Sequelize.BIGINT, allowNull: false, references: { model: 'users', key: 'user_id' }, onDelete: 'CASCADE' }, plan_id: { type: Sequelize.BIGINT, allowNull: false, references: { model: 'tier_plans', key: 'plan_id' }, onDelete: 'RESTRICT' }, tier_id: { type: Sequelize.BIGINT, allowNull: true, references: { model: 'user_tiers', key: 'tier_id' }, onDelete: 'SET NULL' }, status: { type: Sequelize.ENUM('pending', 'completed', 'failed', 'cancelled', 'expired', 'refunded'), allowNull: false, defaultValue: 'pending' }, amount: { type: Sequelize.DECIMAL(10, 2), allowNull: false }, currency: { type: Sequelize.STRING(10), allowNull: false, defaultValue: 'USD' }, promo_code: { type: Sequelize.STRING(50), allowNull: true }, discount: { type: Sequelize.DECIMAL(10, 2), allowNull: false, defaultValue: 0.00 }, provider: { type: Sequelize.STRING(50), allowNull: false, defaultValue: 'paypal' }, provider_payload: { type: Sequelize.JSONB, allowNull: true, defaultValue: {} }, paid_at: { type: Sequelize.DATE, allowNull: true }, createdBy: { type: Sequelize.BIGINT, allowNull: true }, updatedBy: { type: Sequelize.BIGINT, allowNull: true }, deletedBy: { type: Sequelize.BIGINT, allowNull: true }, createdAt: { type: Sequelize.DATE, allowNull: false }, updatedAt: { type: Sequelize.DATE, allowNull: false }, deletedAt: { type: Sequelize.DATE, allowNull: true }, }); await queryInterface.addIndex('payments', ['user_id']); await queryInterface.addIndex('payments', ['status']); await queryInterface.addIndex('payments', ['plan_id']); }, async down(queryInterface) { await queryInterface.dropTable('payments'); }, };