diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2017-09-13 13:18:22 +0800 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2017-09-13 08:18:22 +0300 |
commit | 005900baead84d02b276a2179dee10f00d4d251b (patch) | |
tree | 35df8555141a235720ea7013ebb1ba2da62a343e /models/repo_mirror.go | |
parent | 4c2b1be3a4bc0479927922f12b0c71b2404d073f (diff) | |
download | gitea-005900baead84d02b276a2179dee10f00d4d251b.tar.gz gitea-005900baead84d02b276a2179dee10f00d4d251b.zip |
Use created & updated instead BeforeInsert & BeforeUpdate (#2482)
* use created & updated instead BeforeInsert & BeforeUpdate
* fix vendor checksum
* only show generated SQL when development mode
* remove extra update column updated_unix
* remove trace config
Diffstat (limited to 'models/repo_mirror.go')
-rw-r--r-- | models/repo_mirror.go | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/models/repo_mirror.go b/models/repo_mirror.go index 4588597743..526b7cd02e 100644 --- a/models/repo_mirror.go +++ b/models/repo_mirror.go @@ -40,18 +40,26 @@ type Mirror struct { // BeforeInsert will be invoked by XORM before inserting a record func (m *Mirror) BeforeInsert() { - m.UpdatedUnix = time.Now().Unix() - m.NextUpdateUnix = m.NextUpdate.Unix() + if m != nil { + m.UpdatedUnix = time.Now().Unix() + m.NextUpdateUnix = m.NextUpdate.Unix() + } } // BeforeUpdate is invoked from XORM before updating this object. func (m *Mirror) BeforeUpdate() { - m.UpdatedUnix = time.Now().Unix() - m.NextUpdateUnix = m.NextUpdate.Unix() + if m != nil { + m.UpdatedUnix = time.Now().Unix() + m.NextUpdateUnix = m.NextUpdate.Unix() + } } // AfterSet is invoked from XORM after setting the value of a field of this object. func (m *Mirror) AfterSet(colName string, _ xorm.Cell) { + if m == nil { + return + } + var err error switch colName { case "repo_id": |