class CreateRepMaterials < ActiveRecord::Migration
  def self.up
    create_table :rep_materials do |t|
      t.integer :report_id
      t.integer :material_id
      t.decimal :amount
      t.decimal :price

      t.timestamps
    end
  end

  def self.down
    drop_table :rep_materials
  end
end
