mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
27 lines
855 B
Ruby
27 lines
855 B
Ruby
# 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
|