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