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

20200922054642_drop_snowplow_iglu_registry_url_from_application_settings.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3e64f1f4c2fa4dbb252cbbd4baf143a94099640 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    remove_column :application_settings, :snowplow_iglu_registry_url, :string, limit: 255
  end
end