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

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

class AddSourceVersionToBulkImports < Gitlab::Database::Migration[1.0]
  def change
    add_column :bulk_imports, :source_version, :text # rubocop:disable Migration/AddLimitToTextColumns
  end
end