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

20220916094641_add_source_id_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: b077fee9045f728fbde231cc80cccbc1b7fee860 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddSourceIdToBulkImportEntities < Gitlab::Database::Migration[2.0]
  def change
    add_column :bulk_import_entities, :source_xid, :integer
  end
end