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

20170526185921_migrate_build_stage_reference.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98c32d8284c7b3855b7339c131c4308cc20e5f57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class MigrateBuildStageReference < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  ##
  # This is an empty migration, content has been moved to a new one:
  # post migrate 20170526190000 MigrateBuildStageReferenceAgain
  #
  # See gitlab-org/gitlab-ce!12337 for more details.

  def up
    # noop
  end

  def down
    # noop
  end
end