From 2e9b18944eac3dcaf8a006594cb338d94c07a447 Mon Sep 17 00:00:00 2001 From: GrailFinder Date: Sat, 18 May 2024 13:27:28 +0300 Subject: Feat: auth; login; signup; migrate to sqlite --- internal/models/models.go | 1 + 1 file changed, 1 insertion(+) (limited to 'internal/models') diff --git a/internal/models/models.go b/internal/models/models.go index bd38eaf..71fb358 100644 --- a/internal/models/models.go +++ b/internal/models/models.go @@ -13,6 +13,7 @@ type ( UserScore struct { ID uint32 `db:"id"` Username string `db:"username"` + Password string `db:"password"` Actions []Action BurnTime time.Time `db:"burn_time"` Score int8 `db:"score"` -- cgit v1.2.3