mirror of
https://github.com/samsonjs/grape-active_model_serializers.git
synced 2026-03-25 08:45:55 +00:00
should generate the proper 'root' node for individual objects should generate the proper 'root' node for serialized arrays of objects
18 lines
404 B
Ruby
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
|