Add updatedAt to Bookmarks

This commit is contained in:
Deluan 2020-07-31 15:52:41 -04:00 committed by Deluan Quintão
parent 924ada0dab
commit 34e843a4b3
3 changed files with 11 additions and 0 deletions

View file

@ -31,6 +31,7 @@ type Bookmark struct {
Comment string `json:"comment"`
Position int64 `json:"position"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
}
type Bookmarks []Bookmark