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/20190603060951_set_assign_v...

13 lines
301 B

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