uuid('id')->primary(); $table->foreignUuid('user_id')->constrained()->cascadeOnDelete(); $table->foreignUuid('course_id')->constrained()->cascadeOnDelete(); $table->timestamp('enrolled_at')->nullable(); $table->enum('status', ['active', 'completed', 'dropped'])->default('active'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('enrollments'); } };