ft-sync/model/pull.go
Simon Vieille 3af050caa0 add gorm
add history init/pull/push
2024-08-28 20:36:03 +02:00

13 lines
150 B
Go

package model
import (
"time"
)
type Pull struct {
ID uint `json:"-";gorm:"primary_key"`
Hostname string
Database string
PullAt time.Time
}