Sha256: 8e7192e8e3f68f9712771bfa50a9fd238e7a3fee5847302dd0fda10d1fe94c02

Contents?: true

Size: 575 Bytes

Versions: 1

Compression:

Stored size: 575 Bytes

Contents

class CreateStripeWrapperCharges < ActiveRecord::Migration[5.0]
  def change
    create_table :stripe_wrapper_charges do |t|
      t.string :stripe_id
      t.string :object
      t.float :amount
      t.float :amount_refunded
      t.string :application
      t.float :application_fee
      t.string :balance_transaction
      t.boolean :captured
      t.datetime :created
      t.string :currency
      t.string :customer
      t.text :description
      t.string :cvc_check
      t.string :failure_code
      t.string :failude_message

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stripe_wrapper-0.1.0 db/migrate/20161215195608_create_stripe_wrapper_charges.rb