id(); $table->foreignId('course_id')->constrained()->onDelete('cascade'); $table->string('title'); $table->text('description')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('modules'); } };