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

20210128140157_add_content_type_to_dependency_proxy_manifests.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d016e3c20e21fffa0c38ffd11e99e1af95a2a07a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

class AddContentTypeToDependencyProxyManifests < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  # rubocop:disable Migration/AddLimitToTextColumns
  # limit is added in 20210128140232_add_text_limit_to_dependency_proxy_manifests_content_type.rb
  def change
    add_column :dependency_proxy_manifests, :content_type, :text
  end
  # rubocop:enable Migration/AddLimitToTextColumns
end