class CreatePpaPropostas < ActiveRecord::Migration[4.2]
  def change
    create_table :ppa_propostas do |t|
      t.text :descricao
      t.integer :cidadao_id
      t.integer :sub_area_tematica_id
      t.integer :micro_regiao_id
      t.integer :ppa_id

      t.timestamps null: false
    end
  end
end
