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

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

class AddSourceToImportFailures < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :import_failures, :source, :string, limit: 128
  end
end