New direction; removed wireguard, readme update
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user