From c5885a2ba40629a263320d94e6ae8c7966141820 Mon Sep 17 00:00:00 2001 From: Anang Novriadi Date: Tue, 10 Feb 2026 15:32:15 +0700 Subject: [PATCH] Change user_agent column type to text --- .../migrations/2025_12_09_082917_ubah_visitors_user_agent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2025_12_09_082917_ubah_visitors_user_agent.php b/database/migrations/2025_12_09_082917_ubah_visitors_user_agent.php index 0845bdbaa..4f38b498c 100644 --- a/database/migrations/2025_12_09_082917_ubah_visitors_user_agent.php +++ b/database/migrations/2025_12_09_082917_ubah_visitors_user_agent.php @@ -13,7 +13,7 @@ public function up(): void { Schema::table('visitors', function(Blueprint $table){ // change column user_agent to varchar 250 - $table->string('user_agent', length: 250)->change(); + $table->text('user_agent')->change(); }); }