Zkusil jsi to? Můžete to udělat
time.Time `sql:"DEFAULT:current_timestamp"`
a použije funkci "current_timestamp". Pokud chcete, aby výchozí byl řetězec current_timestamp
, udělali byste to
time.Time `sql:"DEFAULT:'current_timestamp'"`
Takže ve zkratce ano, je to možné. Udělali byste jen:
type User struct {
ID int `sql:"DEFAULT:myfunction"`
}