class CreateComments < ActiveRecord::Migration def self.up create_table :comments do |t| t.integer :entry_id t.string :name t.string :email t.string :url t.text :body t.timestamps end add_index :comments, :entry_id end def self.down remove_index :comments, :entry_id drop_table :comments end end