spec/dummy/db/schema.rb in api_pagination_headers-1.1.1 vs spec/dummy/db/schema.rb in api_pagination_headers-1.1.2

- old
+ new

@@ -9,12 +9,16 @@ # 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 that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20131001123917) do +ActiveRecord::Schema.define(version: 20140406141645) do + create_table "comments", force: true do |t| + t.string "content" + end + create_table "posts", force: true do |t| - t.string "content" + t.string "content" end end