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

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

class AddProjectImportLevelToNamespaceSettings < Gitlab::Database::Migration[2.0]
  enable_lock_retries!

  def change
    add_column :namespace_settings, :project_import_level, :smallint, default: 0, null: false
  end
end