Allow long user agent strings

Copied this from BC and HEY which also use a string with a 4096 character length

See: https://app.fizzy.do/5986089/cards/3066
This commit is contained in:
Stanko K.R.
2025-11-25 12:09:02 +01:00
parent 01dc7c1ce0
commit cc49a1b772
2 changed files with 9 additions and 3 deletions
@@ -0,0 +1,6 @@
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
Generated
+3 -3
View File
@@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[8.2].define(version: 2025_11_21_112416) do
ActiveRecord::Schema[8.2].define(version: 2025_11_25_110629) do
create_table "accesses", id: :uuid, charset: "utf8mb4", collation: "utf8mb4_0900_ai_ci", force: :cascade do |t|
t.datetime "accessed_at"
t.uuid "account_id", null: false
@@ -378,7 +378,7 @@ ActiveRecord::Schema[8.2].define(version: 2025_11_21_112416) do
t.text "endpoint"
t.string "p256dh_key"
t.datetime "updated_at", null: false
t.string "user_agent"
t.string "user_agent", limit: 4096
t.uuid "user_id", null: false
t.index ["account_id"], name: "index_push_subscriptions_on_account_id"
t.index ["user_id", "endpoint"], name: "index_push_subscriptions_on_user_id_and_endpoint", unique: true, length: { endpoint: 255 }
@@ -653,7 +653,7 @@ ActiveRecord::Schema[8.2].define(version: 2025_11_21_112416) do
t.uuid "identity_id", null: false
t.string "ip_address"
t.datetime "updated_at", null: false
t.string "user_agent"
t.string "user_agent", limit: 4096
t.index ["identity_id"], name: "index_sessions_on_identity_id"
end