gitlab-org--gitlab-foss/db/post_migrate/20170621102400_add_stage_id...

18 lines
260 B
Ruby
Raw Normal View History

2017-06-21 08:32:45 +00:00
class AddStageIdIndexToBuilds < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
##
# Improved in 20170703102400_add_stage_id_foreign_key_to_builds.rb
#
2017-06-21 08:32:45 +00:00
def up
# noop
2017-06-21 08:32:45 +00:00
end
def down
# noop
2017-06-21 08:32:45 +00:00
end
end