MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/pms_cafsinfotech_in/db/migrate/20150208105930_replace_move_issues_permission.rb
class ReplaceMoveIssuesPermission < ActiveRecord::Migration[4.2]
  def self.up
    Role.all.each do |role|
      if role.has_permission?(:edit_issues) && !role.has_permission?(:move_issues)
        # inserts one line per tracker and status
        rule = WorkflowPermission.connection.quote_column_name('rule') # rule is a reserved keyword in SQLServer
        WorkflowPermission.connection.execute(
          "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