Merge branch 'add-formData-support' of https://github.com/thg303/rswag into thg303-add-formData-support

This commit is contained in:
domaindrivendev
2017-07-21 14:25:29 -07:00
12 changed files with 125 additions and 27 deletions

View File

@@ -9,6 +9,7 @@ class CreateBlogs < migration_class
create_table :blogs do |t|
t.string :title
t.text :content
t.string :thumbnail
t.timestamps
end

View File

@@ -15,6 +15,7 @@ ActiveRecord::Schema.define(version: 20160218212104) do
create_table "blogs", force: :cascade do |t|
t.string "title"
t.text "content"
t.string "thumbnail"
t.datetime "created_at"
t.datetime "updated_at"
end