class CreateAudits < ActiveRecord::Migration
  def self.up
    create_table :audits do |t|
      t.string :comment, :old_value, :new_value
      t.integer :report_id, :employee_id
      t.datetime :created_at
    end
  end
   def self.down
    drop_table :audits
  end

end
