diff options
Diffstat (limited to 'model')
-rw-r--r-- | model/recipe.go | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/model/recipe.go b/model/recipe.go index 760fe79..c9ef6fb 100644 --- a/model/recipe.go +++ b/model/recipe.go @@ -17,10 +17,14 @@ type Recipe struct { LastChanged string `json:"last_changed"` } -func (r *Recipe) Create() error { +func (r *Recipe) Touch() { now := time.Now().Unix() - r.Created = fmt.Sprint(now) - r.LastChanged = r.Created + r.LastChanged = fmt.Sprint(now) +} + +func (r *Recipe) Create() error { + r.Touch() + r.Created = r.LastChanged query := `INSERT INTO recipes (title, portions, url, notes, created, last_changed) @@ -78,6 +82,8 @@ WHERE id = ?` } func (r *Recipe) Update() error { + r.Touch() + query := `UPDATE recipes SET @@ -85,13 +91,12 @@ SET portions = ?, url = ?, notes = ?, - created = ?, last_changed = ? WHERE id = ?` res, err := db.Exec(query, r.Title, r.Portions, r.Url, r.Notes, - r.Created, r.LastChanged, r.Id) + r.LastChanged, r.Id) if err != nil { return err } |