id(); $table->foreignId('champion_id')->constrained(); $table->enum('platform', ['twitch', 'youtube', 'kick', 'douyu', 'huya']); $table->string('username'); $table->string('displayname'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('streamers'); } };