spec/dummy/db/schema.rb in money-rails-0.3.1 vs spec/dummy/db/schema.rb in money-rails-0.4.0

- old
+ new

@@ -9,11 +9,11 @@ # from scratch. The latter is a flawed and unsustainable approach (the more migrations # you'll amass, the slower it'll run and the greater likelihood for issues). # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20120528210103) do +ActiveRecord::Schema.define(:version => 20120607210247) do create_table "dummy_products", :force => true do |t| t.string "currency" t.integer "price_cents" t.datetime "created_at", :null => false @@ -21,12 +21,13 @@ end create_table "products", :force => true do |t| t.integer "price_cents" t.integer "discount" - t.datetime "created_at", :null => false - t.datetime "updated_at", :null => false + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false t.integer "bonus_cents" + t.integer "optional_price_cents" end create_table "services", :force => true do |t| t.integer "charge_cents" t.integer "discount_cents"