id(); $table->timestamps(); $table->foreignId('channel_id')->constrained(); $table->string('pod'); $table->string('uid'); $table->string('uname'); $table->string('guess'); $table->string('solution'); $table->integer('score'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('guessing_winners'); } };