id(); $table->string('slug', 128)->unique(); $table->string('version', 64); $table->boolean('enabled')->default(true); $table->json('manifest_json')->nullable(); $table->timestamp('installed_at')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('modules'); } };