2020-04-08 14:13:33 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
class AddFilepathToReleaseLinks < ActiveRecord::Migration[6.0]
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def change
|
2020-05-24 23:13:21 +05:30
|
|
|
add_column :release_links, :filepath, :string, limit: 128 # rubocop:disable Migration/PreventStrings
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
end
|