2020-02-24 19:09:12 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
class AddFilepathToReleaseLinks < ActiveRecord::Migration[6.0]
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
2020-04-21 11:21:10 -04:00
|
|
|
add_column :release_links, :filepath, :string, limit: 128 # rubocop:disable Migration/PreventStrings
|
2020-02-24 19:09:12 -05:00
|
|
|
end
|
|
|
|
end
|