discourse/db/migrate/20240912212253_increase_ext...

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

7 lines
213 B
Ruby
Raw Normal View History

# 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