class CreateDoneMaterials < ActiveRecord::Migration
  def self.up
    create_table :done_materials do |t|
        t.column :id, :int
	t.column :employee, :string
	t.column :material, :string
	t.column :count, :string
	t.column :object, :string
	t.column :date_create_report, :string
	t.column :so, :string
	t.column :last_request, :string
	t.column :measure, :string
	t.column :when_add, :string
    end
  end

  def self.down
    drop_table :done_materials
  end
end
