debian-mirror-gitlab/db/migrate/20191010174846_add_snowplow_iglu_registry_url_to_application_settings.rb
2020-05-24 23:13:21 +05:30

12 lines
335 B
Ruby

# frozen_string_literal: true
class AddSnowplowIgluRegistryUrlToApplicationSettings < ActiveRecord::Migration[5.2]
DOWNTIME = false
# rubocop:disable Migration/PreventStrings
def change
add_column :application_settings, :snowplow_iglu_registry_url, :string, limit: 255
end
# rubocop:enable Migration/PreventStrings
end