id(); $table->foreignId('book_recommendation_id')->constrained()->onDelete('cascade'); $table->date('deadline'); $table->unsignedInteger('target_page')->nullable(); $table->string('target_chapter')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('deadlines'); } };