Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220712144900_cleanup_jira_tracker_data_service_id.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90b35f030541141270a159a8d75ee97c0022383b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class CleanupJiraTrackerDataServiceId < Gitlab::Database::Migration[2.0]
  disable_ddl_transaction!

  def up
    cleanup_concurrent_column_rename :jira_tracker_data, :service_id, :integration_id
  end

  def down
    undo_cleanup_concurrent_column_rename :jira_tracker_data, :service_id, :integration_id
  end
end