class CreatePpaPpas < ActiveRecord::Migration[4.2]
  def change
    create_table :ppa_ppas do |t|
      t.integer :exercicio_inicial
      t.integer :exercicio_final
      t.string :prefeito
      t.string :vice_prefeito
      t.string :legislacao
      t.string :data_da_legislacao

      t.timestamps null: false
    end
  end
end
