gitlab-org--gitlab-foss/spec/support/helpers/fake_migration_classes.rb
Yorick Peterse 40ad7d5d7a
Fix ActiveRecord::Migration deprecations
Extending from ActiveRecord::Migration is deprecated, but was still used
in a bunch of places.
2018-12-12 16:38:40 +01:00

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