class CreateDoneWorks < ActiveRecord::Migration
  def self.up
    create_table :done_works do |t|
        t.column :id, :int
	t.column :work_id, :int
	t.column :report_id, :int
	t.column :date_create_report, :string
	t.column :count, :string
    end
  end

  def self.down
    drop_table :done_works
  end
end
