diff options
Diffstat (limited to 'models/action.go')
-rw-r--r-- | models/action.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/action.go b/models/action.go index d39209c447..d4a07ced39 100644 --- a/models/action.go +++ b/models/action.go @@ -89,7 +89,7 @@ type Action struct { } func (a *Action) BeforeInsert() { - a.CreatedUnix = time.Now().UTC().Unix() + a.CreatedUnix = time.Now().Unix() } func (a *Action) AfterSet(colName string, _ xorm.Cell) { |