id(); $table->unsignedTinyInteger('day'); $table->unsignedTinyInteger('slot'); $table->unsignedBigInteger('user')->unsigned(); $table->foreign('user')->references('id')->on('users')->cascadeOnDelete(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('schedule_slots'); } };