summaryrefslogtreecommitdiffstats
path: root/models/attachment.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/attachment.go')
-rw-r--r--models/attachment.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/models/attachment.go b/models/attachment.go
index 3b3521bf60..2731ca4b7a 100644
--- a/models/attachment.go
+++ b/models/attachment.go
@@ -28,12 +28,7 @@ type Attachment struct {
Name string
DownloadCount int64 `xorm:"DEFAULT 0"`
Created time.Time `xorm:"-"`
- CreatedUnix int64
-}
-
-// BeforeInsert is invoked from XORM before inserting an object of this type.
-func (a *Attachment) BeforeInsert() {
- a.CreatedUnix = time.Now().Unix()
+ CreatedUnix int64 `xorm:"created"`
}
// AfterSet is invoked from XORM after setting the value of a field of