Sha256: 407e4e24edfc0ace72d29323b3c5c43cf2fe1ad10015ea737ea4a65e4cc8628a

Contents?: true

Size: 390 Bytes

Versions: 1

Compression:

Stored size: 390 Bytes

Contents

class CreateSpreePagseguroTransactions < ActiveRecord::Migration
  def change
    create_table :spree_pagseguro_transactions do |t|
      t.string :email
      t.float :amount
      t.string :transaction_id
      t.string :customer_id
      t.string :order_id
      t.string :payment_id
      t.text :params
      t.string :code
      t.string :status

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spree_pagseguro-2.1.3 db/migrate/20140108174733_create_spree_pagseguro_transactions.rb