diff options
Diffstat (limited to 'internal')
-rw-r--r-- | internal/database/repos/questions.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/database/repos/questions.go b/internal/database/repos/questions.go index f444b05..ab5e093 100644 --- a/internal/database/repos/questions.go +++ b/internal/database/repos/questions.go @@ -9,7 +9,7 @@ type QuestionsRepo interface { func (p *Provider) DBGetMixedUbung(id uint32) (*models.MixedUbung, error) { var ubung models.MixedUbung - err := p.db.Get(&ubung, "SELECT * FROM mixed_ubungs WHERE mixed_id = ?", id) + err := p.db.Get(&ubung, "SELECT * FROM Table_Mixed WHERE mixedid = ?", id) if err != nil { return nil, err } |