test/rails3/db/schema.rb in fixture_background-0.9.6 vs test/rails3/db/schema.rb in fixture_background-0.9.7

- old
+ new

@@ -8,13 +8,19 @@ # 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 => 20110127093735) do +ActiveRecord::Schema.define(:version => 20110406091431) do create_table "people", :force => true do |t| t.string "name" + t.datetime "created_at" + t.datetime "updated_at" + end + + create_table "posts", :force => true do |t| + t.string "title" t.datetime "created_at" t.datetime "updated_at" end end