summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200922054642_drop_snowplow_iglu_registry_url_from_application_settings.rb
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