gitlab-org--gitlab-foss/db/migrate/20191003195620_add_pendo_ur...

14 lines
349 B
Ruby

# frozen_string_literal: true
class AddPendoUrlToApplicationSettings < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
# rubocop:disable Migration/PreventStrings
def change
add_column :application_settings, :pendo_url, :string, limit: 255
end
# rubocop:enable Migration/PreventStrings
end