class CreateObraDiariosDeObra < ActiveRecord::Migration[5.2]
  def change
    create_table :obra_diarios_de_obra do |t|
      t.integer :obra_id
      t.string :numero
      t.date :data_do_relatorio
      t.integer :tempo_manha
      t.integer :tempo_tarde
      t.integer :tempo_noite
      t.integer :condicao_manha
      t.integer :condicao_tarde
      t.integer :condicao_noite

      t.timestamps
    end
  end
end
