Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20200219105209_add_filepath_to_release_links.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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