Update modified timestamp when updating motion
This commit is contained in:
parent
2b98712aa8
commit
b8b6899cf3
1 changed files with 2 additions and 2 deletions
|
@ -820,8 +820,8 @@ func (m *MotionModel) GetByID(ctx context.Context, id int64) (*Motion, error) {
|
|||
func (m *MotionModel) Update(ctx context.Context, id int64, voteType *VoteType, title string, content string, due time.Time) error {
|
||||
_, err := m.DB.ExecContext(
|
||||
ctx,
|
||||
`UPDATE decisions SET title=?, content=?, votetype=?, due=? WHERE id=?`,
|
||||
title, content, voteType, due.UTC(), id,
|
||||
`UPDATE decisions SET title=?, content=?, votetype=?, due=?, modified=? WHERE id=?`,
|
||||
title, content, voteType, due.UTC(), time.Now().UTC(), id,
|
||||
)
|
||||
if err != nil {
|
||||
return fmt.Errorf("could not update decision: %w", err)
|
||||
|
|
Loading…
Reference in a new issue