blob: 79ed506bc3147f02c804e96a72ff97e16670d87d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
class ReplaceMoveIssuesPermission < ActiveRecord::Migration
def self.up
Role.all.each do |role|
if role.has_permission?(:edit_issues) && !role.has_permission?(:move_issues)
# inserts one ligne per trakcer and status
WorkflowPermission.connection.insert_sql(
"INSERT INTO #{WorkflowPermission.table_name} (tracker_id, old_status_id, role_id, type, field_name, rule)" +
" SELECT t.id, s.id, #{role.id}, 'WorkflowPermission', 'project_id', 'readonly'" +
" FROM #{Tracker.table_name} t, #{IssueStatus.table_name} s"
)
end
end
end
def self.down
raise IrreversibleMigration
end
end
|