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

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

class AddMigrateProjectsToBulkImportEntities < Gitlab::Database::Migration[2.1]
  def change
    add_column :bulk_import_entities, :migrate_projects, :boolean, null: false, default: true
  end
end