class CreateLicitacaoOcorrencias < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_ocorrencias do |t|
      t.integer :projeto_id
      t.integer :numero
      t.date :data_da_ocorrencia
      t.string :horario_da_ocorrencia
      t.text :motivo
      t.integer :tipo

      t.timestamps null: false
    end
  end
end
