# frozen_string_literal: true # Saves PaymentSchedules in database. # It allows to pay with multiple payments class CreatePaymentSchedules < ActiveRecord::Migration[5.2] def change create_table :payment_schedules do |t| t.references :scheduled, polymorphic: true t.integer :total t.string :stp_subscription_id t.string :stp_setup_intent_id t.string :reference t.string :payment_method t.integer :wallet_amount t.belongs_to :wallet_transaction, foreign_key: true t.belongs_to :coupon, foreign_key: true t.string :footprint t.string :environment t.belongs_to :invoicing_profile, foreign_key: true t.belongs_to :statistic_profile, foreign_key: true t.references :operator_profile, foreign_key: { to_table: 'invoicing_profiles' } t.timestamps end end end