class CreateRepWorks < ActiveRecord::Migration
  def self.up
    create_table :rep_works do |t|
      t.integer :report_id
      t.integer :work_id
      t.float :amount

      t.timestamps
    end
  end

  def self.down
    drop_table :rep_works
  end
end
