2021-07-28 22:03:37 +02:00

15 lines
325 B
Go

package model
import (
"github.com/jinzhu/gorm"
)
// CName is a dns cname entry.
type CName struct {
gorm.Model
Hostname string `gorm:"not null" form:"hostname" validate:"required,hostname"`
Target Host `validate:"required,hostname"`
TargetID uint
Ttl int `form:"ttl" validate:"required,min=20,max=86400"`
}