Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fake_migration_classes.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7766df7a5250bd9a62e83a2b51519fdb6339344 (plain)
1
2
3
4
5
6
7
8
9
10
11
class FakeRenameReservedPathMigrationV1 < ActiveRecord::Migration[4.2]
  include Gitlab::Database::RenameReservedPathsMigration::V1

  def version
    '20170316163845'
  end

  def name
    "FakeRenameReservedPathMigrationV1"
  end
end