grape-active_model_serializers/spec/db/schema.rb
george 8022de2d54 Grape::ActiveModelSerializers for models with compound names
should generate the proper 'root' node for individual objects
  should generate the proper 'root' node for serialized arrays of objects
2013-04-30 14:20:18 -04:00

18 lines
404 B
Ruby

ActiveRecord::Schema.define(version: 20130403105356) do
create_table "users", force: true do |t|
t.string "username"
t.string "first_name"
t.string "last_name"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "blog_posts", force: true do |t|
t.string "title"
t.string "body"
t.datetime "created_at"
t.datetime "updated_at"
end
end