1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20201027100746_create_payment_schedules.rb

27 lines
855 B
Ruby
Raw Normal View History

# 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
2020-12-23 16:25:24 +01:00
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
2021-01-25 14:37:07 +01:00
t.belongs_to :statistic_profile, foreign_key: true
2020-11-10 17:02:21 +01:00
t.references :operator_profile, foreign_key: { to_table: 'invoicing_profiles' }
t.timestamps
end
end
end