2020-02-14 16:09:08 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ScheduleLinkLfsObjects < ActiveRecord::Migration[6.0]
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
2020-02-17 04:08:52 -05:00
|
|
|
# no-op as background migration being schedule times out in some instances
|
2020-02-14 16:09:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
# no-op
|
|
|
|
end
|
|
|
|
end
|