mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: Increase external avatar url limit (#26966)
This commit is contained in:
parent
9ebf7c9c37
commit
113e6fd274
@ -19,7 +19,7 @@ end
|
||||
# external_username :string
|
||||
# external_email :string
|
||||
# external_name :string
|
||||
# external_avatar_url :string(1000)
|
||||
# external_avatar_url :string(1500)
|
||||
# external_profile_background_url :string
|
||||
# external_card_background_url :string
|
||||
#
|
||||
|
@ -0,0 +1,7 @@
|
||||
# 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
|
Loading…
Reference in New Issue
Block a user