debian-mirror-gitlab/db/migrate/20200219105209_add_filepath_to_release_links.rb
2020-04-08 14:13:33 +05:30

9 lines
198 B
Ruby

# frozen_string_literal: true
class AddFilepathToReleaseLinks < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :release_links, :filepath, :string, limit: 128
end
end