rswag/spec/dummy/db/migrate/20160218212104_create_blogs.rb
2016-02-25 09:47:09 -08:00

11 lines
170 B
Ruby

class CreateBlogs < ActiveRecord::Migration
def change
create_table :blogs do |t|
t.string :title
t.text :content
t.timestamps
end
end
end