class CreateObraMaosDeObraRdo < ActiveRecord::Migration[5.2]
  def change
    create_table :obra_maos_de_obra_rdo do |t|
      t.integer :diario_de_obra_id
      t.integer :mao_de_obra_id
      t.decimal :quantidade, precision: 12, scale: 2

      t.timestamps
    end
  end
end
