discourse/db/migrate/20240510073417_increase_ext...

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

8 lines
208 B
Ruby
Raw Permalink Normal View History

# 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