class CreateLicitacaoLotes < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_lotes do |t|
      t.integer :projeto_id
      t.integer :numero

      t.timestamps null: false
    end
  end
end
