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: 2ca0bcba09fe3e0c606486e10bed39cb9dc21c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

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

  # rubocop:disable Migration/PreventStrings
  def change
    add_column :import_failures, :source, :string, limit: 128
  end
  # rubocop:enable Migration/PreventStrings
end