class CreateSolidusBlingPaymentMethods < ActiveRecord::Migration[7.0] def change create_table :solidus_bling_payment_methods do |t| t.string :external_id t.integer :account_id, null: false, index: true t.integer :spree_payment_method_id, null: false, index: true t.timestamps t.foreign_key :spree_payment_methods, column: :spree_payment_method_id end end end