diff options
author | 2021-09-08 21:15:45 +0100 | |
---|---|---|
committer | 2021-09-08 21:15:45 +0100 | |
commit | f44cc5178224719fda299dc9f5a65763b1b23f51 (patch) | |
tree | 6c8dd9e0c5b36e3acb2011f0ef69ac689c30000c /internal/gtsmodel/user.go | |
parent | Merge pull request #195 from NyaaaWhatsUpDoc/update/bun-library (diff) | |
parent | Merge remote-tracking branch 'upstream/main' into update/oauth-library (diff) | |
download | gotosocial-f44cc5178224719fda299dc9f5a65763b1b23f51.tar.xz |
Merge pull request #196 from NyaaaWhatsUpDoc/update/oauth-library
Update oauth library -> v4.3.2-SSB
Diffstat (limited to 'internal/gtsmodel/user.go')
-rw-r--r-- | internal/gtsmodel/user.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/gtsmodel/user.go b/internal/gtsmodel/user.go index 28156cfdd..b49a8b28b 100644 --- a/internal/gtsmodel/user.go +++ b/internal/gtsmodel/user.go @@ -38,7 +38,7 @@ type User struct { CurrentSignInIP net.IP `validate:"-" bun:",nullzero"` // What's the most recent IP of this user LastSignInAt time.Time `validate:"-" bun:"type:timestamp,nullzero"` // When did this user last sign in? LastSignInIP net.IP `validate:"-" bun:",nullzero"` // What's the previous IP of this user? - SignInCount int `validate:"min=0" bun:",nullzero,notnull,default:0"` // How many times has this user signed in? + SignInCount int `validate:"min=0" bun:",notnull,default:0"` // How many times has this user signed in? InviteID string `validate:"omitempty,ulid" bun:"type:CHAR(26),nullzero"` // id of the user who invited this user (who let this joker in?) ChosenLanguages []string `validate:"-" bun:",nullzero"` // What languages does this user want to see? FilteredLanguages []string `validate:"-" bun:",nullzero"` // What languages does this user not want to see? |