40ad7d5d7a
Extending from ActiveRecord::Migration is deprecated, but was still used in a bunch of places.
11 lines
236 B
Ruby
11 lines
236 B
Ruby
class FakeRenameReservedPathMigrationV1 < ActiveRecord::Migration[4.2]
|
|
include Gitlab::Database::RenameReservedPathsMigration::V1
|
|
|
|
def version
|
|
'20170316163845'
|
|
end
|
|
|
|
def name
|
|
"FakeRenameReservedPathMigrationV1"
|
|
end
|
|
end
|