Sha256: ef256aa5c1e11253eef27a55beb735daf33da2910638167df7b741b5e1e093be

Contents?: true

Size: 1.97 KB

Versions: 2

Compression:

Stored size: 1.97 KB

Contents

require 'active_record'

ActiveRecord::Schema.define(:version => 20140410153635) do
  create_table "test_payment_methods", :force => true do |t|
    t.string   "kb_account_id",            :null => false
    t.string   "kb_payment_method_id"      # NULL before Kill Bill knows about it
    t.string   "token"
    t.string   "cc_first_name"
    t.string   "cc_last_name"
    t.string   "cc_type"
    t.integer  "cc_exp_month"
    t.integer  "cc_exp_year"
    t.integer  "cc_last_4"
    t.string   "address1"
    t.string   "address2"
    t.string   "city"
    t.string   "state"
    t.string   "zip"
    t.string   "country"
    t.boolean  "is_deleted",             :null => false, :default => false
    t.datetime "created_at",             :null => false
    t.datetime "updated_at",             :null => false
  end

  add_index(:test_payment_methods, :kb_account_id)
  add_index(:test_payment_methods, :kb_payment_method_id)

  create_table "test_transactions", :force => true do |t|
    t.integer  "response_id",  :null => false
    t.string   "api_call",              :null => false
    t.string   "kb_payment_id",         :null => false
    t.integer  "amount_in_cents",       :null => false
    t.string   "currency",              :null => false
    t.datetime "created_at",            :null => false
    t.datetime "updated_at",            :null => false
  end

  add_index(:test_transactions, :kb_payment_id)

  create_table "test_responses", :force => true do |t|
    t.string   "api_call",        :null => false
    t.string   "kb_payment_id"
    t.string   "message"
    t.string   "authorization"
    t.boolean  "fraud_review"
    t.boolean  "test"
    t.string   "avs_result_code"
    t.string   "avs_result_message"
    t.string   "avs_result_street_match"
    t.string   "avs_result_postal_match"
    t.string   "cvv_result_code"
    t.string   "cvv_result_message"
    t.boolean  "success"
    t.datetime "created_at",        :null => false
    t.datetime "updated_at",        :null => false
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
killbill-3.1.1 spec/killbill/helpers/test_schema.rb
killbill-3.1.0 spec/killbill/helpers/test_schema.rb