Sha256: 6576845910a24205da0e1fe4b650e437d9e27f550bf477506f33b2d8e2ecf45a

Contents?: true

Size: 363 Bytes

Versions: 1

Compression:

Stored size: 363 Bytes

Contents

class SpreePaypalCheckoutOrder < ActiveRecord::Migration[7.1]
  def change
    create_table :spree_paypal_checkout_orders do |t|
      t.string :token
      t.string :payer_id
      t.string :transaction_id
      t.string :state
      t.string :refund_transaction_id
      t.datetime :refunded_at
      t.string :refund_type

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_paypal_checkout-0.0.2 db/migrate/20240713064825_spree_paypal_checkout_order.rb