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