????

Your IP : 3.129.253.49


Current Path : C:/inetpub/vhost/redmine/db/migrate/
Upload File :
Current File : C:/inetpub/vhost/redmine/db/migrate/20170418090031_add_view_news_to_all_existing_roles.rb

class AddViewNewsToAllExistingRoles < ActiveRecord::Migration[4.2]
  def up
    Role.all.each { |role| role.add_permission! :view_news }
  end

  def down
    # nothing to revert
  end
end