mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:17:08 +08:00
8 lines
208 B
Ruby
8 lines
208 B
Ruby
# 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
|