class CreateComment < ActiveRecord::Migration def change create_table :comments do |t| t.string :comment t.integer :post_id t.timestamps end end end