rswag/test-app/db/migrate/20160218212104_create_blogs.rb

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