debian-mirror-gitlab/db/post_migrate/20170621102400_add_stage_id_index_to_builds.rb
2019-02-15 15:39:39 +05:30

18 lines
265 B
Ruby

class AddStageIdIndexToBuilds < ActiveRecord::Migration[4.2]
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