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