gitlab-org--gitlab-foss/db/post_migrate/20220712144900_cleanup_jira...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
346 B
Ruby
Raw Normal View History

# 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