refactor(model): Remove unused field

This commit is contained in:
2025-08-11 19:04:43 +03:00
parent 37a01073b5
commit 54576f6119

View File

@@ -21,8 +21,6 @@ type Service struct {
Public *bool `gorm:"default:false" json:"public"`
// Host to check, for example 192.168.1.44
Host string `gorm:"size:255;not null" json:"host"`
// Port to check, for example 5432 (postgresql)
Port *int `gorm:"default:null" json:"port"`
// Type for check, for now is TCP or HTTP
Type string `gorm:"size:255;not null" json:"type"`
TypeConfig *ServiceTypeCheckConfig `gorm:"serializer:json" json:"type_config"`