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

19 lines
445 B
Ruby

class CleanupMergeRequestsAllowMaintainerToPushRename < ActiveRecord::Migration[4.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
# NOOP
end
def down
if column_exists?(:merge_requests, :allow_collaboration)
# rubocop:disable Migration/UpdateLargeTable
rename_column_concurrently :merge_requests, :allow_collaboration, :allow_maintainer_to_push
end
end
end