feat(db): add missing changelog import

This commit is contained in:
2021-11-05 00:10:41 +01:00
parent 2676b09728
commit 3efbec281d
3 changed files with 7 additions and 1 deletions

View File

@@ -14,7 +14,7 @@ func (db *Database) GetAllAccountOfUser(id string) ([]*Account, error) {
FROM public.account a
WHERE a.id = $1
`
rows, err := db.Session.Query(q)
rows, err := db.Session.Query(q, id)
if err != nil {
return nil, err
}