2021-01-11 22:10:47 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemoveDuplicateServices < ActiveRecord::Migration[6.0]
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
2021-01-13 19:10:35 -05:00
|
|
|
# noop, replaced by 20210112143418_remove_duplicate_services.rb
|
2021-01-11 22:10:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
end
|
|
|
|
end
|