id(); $table->foreignIdFor(Server::class); $table->string('name'); $table->string('status'); $table->string('category'); // database / cache / webserver $table->string('type'); // postgres / redis / caddy $table->string('version'); // 17 / 7 / 2 $table->string('driver_name'); $table->text('credentials')->nullable(); $table->string('container_name')->nullable(); $table->string('container_id')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('services'); } };