id(); $table->unsignedBigInteger('server_id'); $table->string('type'); $table->json('type_data')->nullable(); $table->string('name'); $table->string('version'); $table->string('status')->default(ServiceStatus::INSTALLING); $table->boolean('is_default')->default(1); $table->string('unit')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('services'); } };