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