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');