class CreateLicitacaoProjetos < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_projetos do |t|
      t.integer :pedido_id
      t.text :justificativa
      t.integer :tipo_de_totalizacao
      t.integer :vigencia
      t.integer :legislacao_id
      t.integer :modalidade_de_licitacao

      t.timestamps null: false
    end
  end
end
