cc49a1b772
Copied this from BC and HEY which also use a string with a 4096 character length See: https://app.fizzy.do/5986089/cards/3066
7 lines
220 B
Ruby
7 lines
220 B
Ruby
class IncreaseUserAgentLength < ActiveRecord::Migration[8.2]
|
|
def change
|
|
change_column :sessions, :user_agent, :string, limit: 4096
|
|
change_column :push_subscriptions, :user_agent, :string, limit: 4096
|
|
end
|
|
end
|