From bfc20ef21989ab066a0f8090e711f89b398181e1 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Mon, 7 Aug 2023 19:29:47 +0200 Subject: [PATCH] public database --- .../2023_08_07_142950_create_standalone_postgres_table.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/database/migrations/2023_08_07_142950_create_standalone_postgres_table.php b/database/migrations/2023_08_07_142950_create_standalone_postgres_table.php index 43215a184..3d2f1b7d3 100644 --- a/database/migrations/2023_08_07_142950_create_standalone_postgres_table.php +++ b/database/migrations/2023_08_07_142950_create_standalone_postgres_table.php @@ -24,6 +24,9 @@ return new class extends Migration $table->string('postgres_host_auth_method')->nullable(); $table->json('init_scripts')->nullable(); + $table->boolean('is_public')->default(false); + $table->integer('public_port')->nullable(); + $table->timestamp('started_at')->nullable(); $table->morphs('destination');