debian-mirror-gitlab/db/migrate/20191010174846_add_snowplow_iglu_registry_url_to_application_settings.rb

12 lines
335 B
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
class AddSnowplowIgluRegistryUrlToApplicationSettings < ActiveRecord::Migration[5.2]
DOWNTIME = false
2020-05-24 23:13:21 +05:30
# rubocop:disable Migration/PreventStrings
2019-12-26 22:10:19 +05:30
def change
add_column :application_settings, :snowplow_iglu_registry_url, :string, limit: 255
end
2020-05-24 23:13:21 +05:30
# rubocop:enable Migration/PreventStrings
2019-12-26 22:10:19 +05:30
end