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

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

class AddRemoteImportUrlToImportExportUpload < ActiveRecord::Migration[6.0]
  # limit is added in 20210419203018_add_remote_text_limit_to_import_url_in_import_export_upload.rb
  def change
    add_column :import_export_uploads, :remote_import_url, :text # rubocop:disable Migration/AddLimitToTextColumns
  end
end