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(); }); }