feat(docker): Add Dockerfile and compose file
This commit is contained in:
@@ -9,10 +9,15 @@ import (
|
||||
|
||||
type Endpoint struct {
|
||||
ID uuid.UUID `gorm:"type:uuid;primary_key;default:gen_random_uuid()" json:"id"`
|
||||
URL string `gorm:"not null" json:"url"`
|
||||
Path string `gorm:"not null;default:/" json:"path"`
|
||||
RecordID uuid.UUID `gorm:"not null;uniqueIndex:idx_endpoint_record_id" json:"record_id"`
|
||||
CreatedAt time.Time `gorm:"not null;default:now()" json:"created_at"`
|
||||
UpdatedAt time.Time `gorm:"not null;default:now()" json:"updated_at"`
|
||||
DeletedAt gorm.DeletedAt `gorm:"index" json:"deleted_at"`
|
||||
|
||||
Record Record `gorm:"foreignKey:RecordID" json:"-"`
|
||||
|
||||
EndpointGroups []EndpointGroup `gorm:"foreignKey:EndpointID" json:"-"`
|
||||
}
|
||||
|
||||
func (Endpoint) TableName() string {
|
||||
|
||||
Reference in New Issue
Block a user