id(); $table->string('uuid')->unique(); $table->string('name'); $table->string('human_name')->nullable(); $table->longText('description')->nullable(); $table->string('fqdn')->unique()->nullable(); $table->longText('ports')->nullable(); $table->longText('exposes')->nullable(); $table->string('status')->default('exited'); $table->foreignId('service_id'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('service_applications'); } };