discourse/db/migrate/20240510073417_increase_external_avatar_url_limit.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
208 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class IncreaseExternalAvatarUrlLimit < ActiveRecord::Migration[7.0]
def change
change_column :single_sign_on_records, :external_avatar_url, :string, limit: 1500
end
end