mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
14 lines
435 B
Ruby
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
|