id(); $table->foreignId('lecturer_id')->nullable()->constrained()->nullOnDelete(); $table->string('name'); $table->string('slug')->nullable()->index(); $table->text('description')->nullable(); $table->unsignedInteger('duration_minutes')->nullable(); $table->unsignedBigInteger('created_by')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('courses'); } };