Sha256: b95d134494016df7008ee7b4c37d8b92deb4678aa37e44864707e91865c52b16

Contents?: true

Size: 827 Bytes

Versions: 12

Compression:

Stored size: 827 Bytes

Contents

require 'active_record'

ActiveRecord::Schema.define(:version => 20130911853636) do
  create_table "currency_updates", :force => true do |t|
    t.string   "base_currency",           :null => false
    t.datetime "conversion_date",         :null => false
    t.datetime "created_at",              :null => false
    t.datetime "updated_at",              :null => false
  end

  add_index(:currency_updates, :base_currency)

  create_table "currency_rates", :force => true do |t|
    t.string   "target_currency",         :null => false
    t.float   "rate",                    :null => false
    t.integer  "currency_update_id",      :null => false
    t.datetime "created_at",              :null => false
    t.datetime "updated_at",              :null => false
  end

  add_index(:currency_rates, :currency_update_id)
end



Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
killbill-currency-plugin-3.0.0 db/schema.rb
killbill-currency-plugin-2.0.0 db/schema.rb
killbill-currency-plugin-1.3.1 db/schema.rb
killbill-currency-plugin-1.3.0 db/schema.rb
killbill-currency-plugin-1.2.0 db/schema.rb
killbill-currency-plugin-1.1.4 db/schema.rb
killbill-currency-plugin-1.1.3 db/schema.rb
killbill-currency-plugin-1.1.2 db/schema.rb
killbill-currency-plugin-1.1.1 db/schema.rb
killbill-currency-plugin-1.1.0 db/schema.rb
killbill-currency-plugin-1.0.1 db/schema.rb
killbill-currency-plugin-1.0.0 db/schema.rb