OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/db/migrate/20190527095959_set_manage_b...

13 lines
304 B

require "#{Rails.root}/db/migrate/migration_utils/permission_adder"
class SetManageBoardPermission < ActiveRecord::Migration[5.2]
def up
::Migration::MigrationUtils::PermissionAdder
.add(:manage_public_queries,
:manage_board_views)
end
def down
# Nothing to do
end
end