diff options
Diffstat (limited to 'model/recipe.go')
-rw-r--r-- | model/recipe.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/model/recipe.go b/model/recipe.go index b9830e6..db3af70 100644 --- a/model/recipe.go +++ b/model/recipe.go @@ -29,9 +29,6 @@ func (r *Recipe) Touch() { } func (r *Recipe) Create() error { - r.Touch() - r.Created = r.LastChanged - query := `INSERT INTO recipes (title, portions, url, notes, created, last_changed) VALUES @@ -88,8 +85,6 @@ WHERE id = ?` } func (r *Recipe) Update() error { - r.Touch() - query := `UPDATE recipes SET |