# coding: utf-8
class AddTelToReports < ActiveRecord::Migration
  def self.up
    add_column :reports, :tel, :integer
    add_column :reports, :tel_comment, :text
    add_column :reports, :video, :integer
    add_column :reports, :video_comment, :text
  end
  
  def self.down
    remove_column :reports, :tel
    remove_column :reports, :tel_comment
    remove_column :reports, :video
    remove_column :reports, :video_comment    
  end
end
