id(); $table->foreignIdFor(Organisation::class); $table->foreignIdFor(Network::class); $table->foreignIdFor(Provider::class); $table->string('external_id')->nullable(); $table->string('name'); $table->string('ipv4'); $table->string('ipv6'); $table->string('private_ip'); $table->string('provider_status'); $table->string('status'); $table->string('region'); $table->string('os'); $table->string('plan'); $table->string('user'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('servers'); } };