summaryrefslogtreecommitdiff
path: root/db/migrate/20201116090328_add_regulated_to_compliance_frameworks.rb
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