class CreateReports < ActiveRecord::Migration
  def self.up
    create_table :reports do |t|
	t.column :id, :int
	t.column :name, :string
	t.column :sum, :string
	t.column :status, :int
	t.column :category, :int
	t.column :com_other_materials, :text
	t.column :com_request_materials, :text
	t.column :com_imperfection, :text
	t.column :com_stay_work, :text
    end
  end

  def self.down
    drop_table :reports
  end
end
