debian-mirror-gitlab/db/post_migrate/20200922054642_drop_snowplow_iglu_registry_url_from_application_settings.rb
2021-01-03 14:25:43 +05:30

10 lines
252 B
Ruby

# 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