class CreateComments < ActiveRecord::Migration def change create_table :comments do |t| t.text :text t.integer :blog_id t.timestamps end add_index :comments, :blog_id end end