summaryrefslogtreecommitdiff
path: root/db/migrate/20200219105209_add_filepath_to_release_links.rb
blob: bcc204c22e8fcecb3723a9e3722852ae0e59f89f (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
  end
end