Using this would take care of it:
type Timeline struct {
ID string `json:"id"`
Timestamp *time.Time `json:"timestamp" gorm:"type:datetime"`
}
You could even change the declared type of the Timestamp field to something else, say int64 to represent Unix times. Then you could write a Scanner to read the datetime field into the int64 field.
type TimeStampUnix int64
type Timeline struct {
ID string `json:"id"`
TimeStamp TimeStampUnix `json:"timestamp" gorm:"type:datetime"`
}
func (t *TimeStampUnix) Scan(src interface{}) error {
switch src.(type) {
case time.Time:
*t = TimeStampUnix(src.(time.Time).Unix())
return nil
case []byte:
// bonus code to read text field of format '2014-12-31 14:21:01-0400'
//
str := string(src.([]byte))
var y, m, d, hr, min, s, tzh, tzm int
var sign rune
_, e := fmt.Sscanf(str, "%d-%d-%d %d:%d:%d%c%d:%d",
&y, &m, &d, &hr, &min, &s, &sign, &tzh, &tzm)
if e != nil {
return e
}
offset := 60 * (tzh*60 + tzm)
if sign == '-' {
offset = -1 * offset
}
loc := time.FixedZone("local-tz", offset)
t1 := time.Date(y, time.Month(m), d, hr, min, s, 0, loc)
*t = TimeStampUnix(t1.Unix())
return nil
default:
return fmt.Errorf("Value '%s' of incompatible type '%T' found", string(src.([]byte)), src)
}
}