mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 09:15:55 +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
|