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

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

class AddComplianceFrameworkIdToNamespaceSettings < Gitlab::Database::Migration[2.0]
  def change
    add_column :namespace_settings, :default_compliance_framework_id, :bigint
  end
end