summaryrefslogtreecommitdiffstats
path: root/model/channel.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/channel.go')
-rw-r--r--model/channel.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/model/channel.go b/model/channel.go
index 749b8dc94..950e910dd 100644
--- a/model/channel.go
+++ b/model/channel.go
@@ -44,6 +44,7 @@ type Channel struct {
Purpose string `json:"purpose"`
LastPostAt int64 `json:"last_post_at"`
TotalMsgCount int64 `json:"total_msg_count"`
+ ExtraUpdateAt int64 `json:"extra_update_at"`
CreatorId string `json:"creator_id"`
}
@@ -132,6 +133,7 @@ func (o *Channel) PreSave() {
o.CreateAt = GetMillis()
o.UpdateAt = o.CreateAt
+ o.ExtraUpdateAt = 0
}
func (o *Channel) PreUpdate() {