Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20210105103649_delete_column_group_id_on_compliance_framework.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b13d2fe2d0a272f4e175ec5bfb36aedb0db3cc95 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class DeleteColumnGroupIdOnComplianceFramework < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    remove_column :compliance_management_frameworks, :group_id, :bigint
  end
end