class CreatePosts < ActiveRecord::Migration def change create_table :posts do |t| t.string :title t.text :content t.integer :view_count t.string :author_email t.timestamps end end end