summaryrefslogtreecommitdiff
path: root/spec/support/helpers/fake_migration_classes.rb
blob: 6c066b3b199d59de4a18874a548914d05d69aed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class FakeRenameReservedPathMigrationV1 < ActiveRecord::Migration[4.2]
  include Gitlab::Database::RenameReservedPathsMigration::V1

  def version
    '20170316163845'
  end

  def name
    "FakeRenameReservedPathMigrationV1"
  end
end