class CreateLicitacaoPublicacoes < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_publicacoes do |t|
      t.integer :projeto_id
      t.integer :sequencia
      t.date :data_da_publicacao
      t.integer :tipo_de_publicacao
      t.string :local_publicado

      t.timestamps null: false
    end
  end
end
