gitlab-org--gitlab-foss/db/migrate/20191010174846_add_snowplow...

10 lines
246 B
Ruby

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