mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 14:22:33 +03:00
todo
This commit is contained in:
parent
649aea9abf
commit
c94f711da7
@ -187,5 +187,22 @@ func (r *PostsRepository) CreateInTx(tx pgx.Tx, p Post) (int, error) {
|
|||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: fix dat shit
|
||||||
|
// updating parent post `updated_at`
|
||||||
|
// if !p.IsParent {
|
||||||
|
// sql = `
|
||||||
|
// UPDATE posts
|
||||||
|
// SET updated_at = now()
|
||||||
|
// WHERE id = $1
|
||||||
|
// `
|
||||||
|
// rows, err := tx.Query(context.TODO(), sql, p.ParentID)
|
||||||
|
// if err != nil {
|
||||||
|
// return 0, err
|
||||||
|
// }
|
||||||
|
// if rows.Err() != nil {
|
||||||
|
// return 0, err
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
return createdPost.ID, nil
|
return createdPost.ID, nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user