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

18 lines
260 B
Ruby

class AddStageIdIndexToBuilds < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
##
# Improved in 20170703102400_add_stage_id_foreign_key_to_builds.rb
#
def up
# noop
end
def down
# noop
end
end