debian-mirror-gitlab/db/post_migrate/20170526185921_migrate_build_stage_reference.rb
2017-09-10 17:25:29 +05:30

20 lines
380 B
Ruby

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