Sha256: 33459a7a200554638b0412dc5b30b5293f5a9a3066e7fb943ddc9a4ce558a1b6

Contents?: true

Size: 465 Bytes

Versions: 4

Compression:

Stored size: 465 Bytes

Contents

# frozen_string_literal: true

# This migration comes from spree_paypal_express (originally 20130723042610)
class CreateSpreePaypal < SpreeExtension::Migration[4.2]
  def change
    unless table_exists?(:spree_paypals)
      create_table :spree_paypals do |t|
        t.string :email
        t.string :first_name
        t.string :last_name
        t.string :payer_id
        t.string :transaction_id
        t.bigint :payment_method_id
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spree_paypal-1.0.0 db/migrate/20240905052951_create_spree_paypal.rb
spree_paypal-0.1.2 db/migrate/20240905052951_create_spree_paypal.rb
spree_paypal-0.1.1 db/migrate/20240905052951_create_spree_paypal.rb
spree_paypal-0.1.0 db/migrate/20240905052951_create_spree_paypal.rb