gitlab-org--gitlab-foss/db/post_migrate/20201207165956_remove_dupli...

15 lines
245 B
Ruby

# frozen_string_literal: true
class RemoveDuplicateServices < ActiveRecord::Migration[6.0]
DOWNTIME = false
disable_ddl_transaction!
def up
# noop, replaced by 20210112143418_remove_duplicate_services.rb
end
def down
end
end