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

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

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

  def change
    add_column(:compliance_management_frameworks, :regulated, :boolean, default: true, null: false)
  end
end