summaryrefslogtreecommitdiff
path: root/db/migrate/20200124053531_add_source_to_import_failures.rb
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