id(); $table->string('name'); $table->string('version'); $table->boolean('installed')->default(false); $table->boolean('enabled')->default(false); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('modules'); } };