uuid('id')->primary(); $table->foreignUuid('course_id')->constrained('courses')->cascadeOnDelete(); $table->string('title'); $table->text('description')->nullable(); $table->integer('order_index')->default(0); $table->boolean('is_free_preview')->default(false); $table->json('metadata')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('modules'); } };