1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/db/migrate/20210416073410_create_payment_gateway_objects.rb
2021-06-03 09:48:21 +02:00

14 lines
435 B
Ruby

# frozen_string_literal: true
# Saves references to remote objects, in the payment gateway database
class CreatePaymentGatewayObjects < ActiveRecord::Migration[5.2]
def change
create_table :payment_gateway_objects do |t|
t.string :gateway_object_id
t.string :gateway_object_type
t.references :item, polymorphic: true
t.references :payment_gateway_object, index: true, foreign_key: true
end
end
end