debian-mirror-gitlab/db/migrate/20200124053531_add_source_to_import_failures.rb

12 lines
288 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
class AddSourceToImportFailures < ActiveRecord::Migration[5.2]
DOWNTIME = false
2020-05-24 23:13:21 +05:30
# rubocop:disable Migration/PreventStrings
2020-03-13 15:44:24 +05:30
def change
add_column :import_failures, :source, :string, limit: 128
end
2020-05-24 23:13:21 +05:30
# rubocop:enable Migration/PreventStrings
2020-03-13 15:44:24 +05:30
end