class CreateObraMedicoesDaCaixaDaObra < ActiveRecord::Migration[5.2]
  def change
    create_table :obra_medicoes_da_caixa_da_obra do |t|
      
      t.integer :medicao_da_obra_id
      t.date :data_de_envio
      t.date :data_de_liberacao

      t.timestamps
    end
  end
end
