From 53669a298f3e7c725c1b8e47df19d47db0b596cf Mon Sep 17 00:00:00 2001 From: Jay Date: Mon, 15 Oct 2018 16:12:11 +0800 Subject: [PATCH] add update sql mtime --- model/donate_setting.go | 2 +- model/facebook_page.go | 2 +- model/twitch_channel.go | 8 ++++---- model/youtube_channel.go | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/model/donate_setting.go b/model/donate_setting.go index bd90949..3064bac 100644 --- a/model/donate_setting.go +++ b/model/donate_setting.go @@ -46,7 +46,7 @@ func (p *DonateSetting) InsertOrUpdate() (err error) { "end_date" = :end_date, "target_amount" = :target_amount, "title" = :title, - "start_amount" = :start_amount` + "start_amount" = :start_amount, "mtime" = now()` _, err = x.NamedExec(query, p) return } diff --git a/model/facebook_page.go b/model/facebook_page.go index 7f6c27e..6711ba3 100644 --- a/model/facebook_page.go +++ b/model/facebook_page.go @@ -51,7 +51,7 @@ func (p *FacebookPage) AddPage() (err error) { // UpdatePost - func (p *FacebookPage) UpdatePost(postID string) (err error) { - query := `update "public"."facebook_page" set "lastpost" = $1 where id = $2` + query := `update "public"."facebook_page" set "lastpost" = $1, "mtime" = now() where id = $2` _, err = x.Exec(query, postID, p.ID) if err != nil { return diff --git a/model/twitch_channel.go b/model/twitch_channel.go index 079fa1e..51eeb65 100644 --- a/model/twitch_channel.go +++ b/model/twitch_channel.go @@ -85,7 +85,7 @@ func (p *TwitchChannel) Add() (err error) { // UpdateStream - func (p *TwitchChannel) UpdateStream(streamID string) (err error) { - query := `update "public"."twitch_channel" set "laststream" = $1 where "id" = $2` + query := `update "public"."twitch_channel" set "laststream" = $1, "mtime" = now() where "id" = $2` _, err = x.Exec(query, streamID, p.ID) if err != nil { return @@ -96,7 +96,7 @@ func (p *TwitchChannel) UpdateStream(streamID string) (err error) { // UpdateName - func (p *TwitchChannel) UpdateName(name string) (err error) { - _, err = x.Exec(`update "public"."twitch_channel" set "name" = $1 where "id" = $2`, name, p.ID) + _, err = x.Exec(`update "public"."twitch_channel" set "name" = $1, "mtime" = now() where "id" = $2`, name, p.ID) if err != nil { return } @@ -107,14 +107,14 @@ func (p *TwitchChannel) UpdateName(name string) (err error) { // UpdateJoin - func (p *TwitchChannel) UpdateJoin(join bool) (err error) { p.Join = join - _, err = x.NamedExec(`update "public"."twitch_channel" set "join" = :join where "id" = :id`, p) + _, err = x.NamedExec(`update "public"."twitch_channel" set "join" = :join, "mtime" = now() where "id" = :id`, p) return } // UpdateOpayID - func (p *TwitchChannel) UpdateOpayID(id string) (err error) { p.OpayID = id - _, err = x.NamedExec(`update "public"."twitch_channel" set "opayid" = :opayid where "id" = :id`, p) + _, err = x.NamedExec(`update "public"."twitch_channel" set "opayid" = :opayid, "mtime" = now() where "id" = :id`, p) return } diff --git a/model/youtube_channel.go b/model/youtube_channel.go index b9cdba0..92001d4 100644 --- a/model/youtube_channel.go +++ b/model/youtube_channel.go @@ -57,14 +57,14 @@ func (p *YoutubeChannel) Add() (err error) { // UpdateLastVideo - func (p *YoutubeChannel) UpdateLastVideo(vid string) (err error) { p.LastVideo = vid - _, err = x.NamedExec(`update "public"."youtube_channel" set "lastvideo" = :lastvideo where "id" = :id`, p) + _, err = x.NamedExec(`update "public"."youtube_channel" set "lastvideo" = :lastvideo, "mtime" = now() where "id" = :id`, p) return } // UpdateExpire - func (p *YoutubeChannel) UpdateExpire(t int64) (err error) { p.Expire = t - _, err = x.NamedExec(`update "public"."youtube_channel" set "expire" = :expire where "id" = :id`, p) + _, err = x.NamedExec(`update "public"."youtube_channel" set "expire" = :expire, "mtime" = now() where "id" = :id`, p) if err != nil { return err }