f0391c2517
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
13 lines
267 B
Ruby
13 lines
267 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FakeRenameReservedPathMigrationV1 < ActiveRecord::Migration[4.2]
|
|
include Gitlab::Database::RenameReservedPathsMigration::V1
|
|
|
|
def version
|
|
'20170316163845'
|
|
end
|
|
|
|
def name
|
|
"FakeRenameReservedPathMigrationV1"
|
|
end
|
|
end
|