New direction; removed wireguard, readme update

This commit is contained in:
2025-09-07 11:37:52 +01:00
parent 82556535ba
commit a91780d1d5
21 changed files with 102 additions and 5622 deletions

View File

@@ -14,8 +14,7 @@ return new class extends Migration
Schema::create('servers', function (Blueprint $table) {
$table->id();
$table->foreignIdFor(Organisation::class);
$table->foreignIdFor(Network::class, 'external_network_id');
$table->foreignIdFor(Network::class, 'internal_network_id')->nullable();
$table->foreignIdFor(Network::class);
$table->foreignIdFor(Provider::class);
$table->string('external_id')->nullable();
$table->string('name');
@@ -23,9 +22,6 @@ return new class extends Migration
$table->string('ipv6');
$table->string('private_ip');
$table->string('provider_status');
$table->string('internal_ip');
$table->integer('internal_ip_ending');
$table->text('internal_public_key')->nullable();
$table->string('status');
$table->string('region');
$table->string('os');