id(); $table->string('name'); $table->string('code')->unique(); $table->string('version', 50); $table->boolean('is_enabled')->default(false); $table->json('config')->nullable(); $table->timestamp('installed_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('v2_plugins'); } };