string('detected_language')->nullable()->default(null); $table->index(['detected_language']); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('chat_logs', function (Blueprint $table) { $table->dropColumn('detected_language'); }); } };