summaryrefslogtreecommitdiff
path: root/db/migrate/20200219105209_add_filepath_to_release_links.rb
blob: ba69332fb700eea435fd6f9b0467e9046bc45610 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true
class AddFilepathToReleaseLinks < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :release_links, :filepath, :string, limit: 128 # rubocop:disable Migration/PreventStrings
  end
end