class CreatePpaDepartments < ActiveRecord::Migration[4.2]
  def change
    create_table :ppa_departments do |t|
      t.string :name

      t.timestamps null: false
    end
  end
end
