class CreateLicitacaoApostilamentos < ActiveRecord::Migration[5.2]
  def change
    create_table :licitacao_apostilamentos do |t|
      t.date :data_apostilamento
      t.integer :modalidade
      t.integer :legislacao_id
      t.integer :contrato_id
      t.text :objeto

      t.timestamps
    end
  end
end
