summaryrefslogtreecommitdiff
path: root/db/migrate/20201221225303_add_service_desk_reply_to_is_not_null_index_on_issues.rb
blob: 7643fc107aaeff626a0076f74bd81a1f2f3745c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddServiceDeskReplyToIsNotNullIndexOnIssues < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    # no-op, the migration's version number was lowered to be executed earlier than db/post_migrate/20201128210234_schedule_populate_issue_email_participants.rb
    #
    # The new migration is located here: db/migrate/20201128210000_add_service_desk_reply_to_is_not_null_index_on_issues_fix.rb
  end
end