foreignId('user_id')->nullable()->default(null)->constrained(); $table->string('category')->default(''); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('chat_bot_logs', function (Blueprint $table) { $table->dropColumn('user_id'); $table->dropColumn('category'); }); } };