mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
ad90b9cfd1
We recently increased it to 1500 but that was not enough: 113e6fd274
7 lines
213 B
Ruby
7 lines
213 B
Ruby
# frozen_string_literal: true
|
|
class IncreaseExternalAvatarUrlLimitTo2000 < ActiveRecord::Migration[7.1]
|
|
def change
|
|
change_column :single_sign_on_records, :external_avatar_url, :string, limit: 2000
|
|
end
|
|
end
|