This commit is contained in:
Unknwon 2016-03-11 17:12:37 -05:00
parent 263304b6b7
commit f76d821bda
2 changed files with 4 additions and 1 deletions

View file

@ -39,7 +39,7 @@ type Release struct {
}
func (r *Release) BeforeInsert() {
r.CreatedUnix = r.Created.UTC().Unix()
r.CreatedUnix = time.Now().UTC().Unix()
}
func (r *Release) AfterSet(colName string, _ xorm.Cell) {