overrides

This commit is contained in:
2026-09-06 19:22:47 +02:00
parent 2dc9a30644
commit 629d515911
5 changed files with 340 additions and 21 deletions
+3 -3
View File
@@ -28,7 +28,7 @@ type ApiKey struct {
// Registrants for API keys. Holds PII from an international user base, so the deletion path in 005_privacy.sql applies here too, not just to Discord users.
type ApiOwner struct {
ID int64
Email interface{}
Email string
EmailVerifiedAt pgtype.Timestamptz
Callsign interface{}
CallsignVerifiedAt pgtype.Timestamptz
@@ -75,7 +75,7 @@ type CoreVerification struct {
ID int64
UserID int64
Method string
Callsign interface{}
Callsign string
Status string
ChallengeHash []byte
Detail []byte
@@ -103,7 +103,7 @@ type LogbookQso struct {
ID int64
UserID int64
ImportID *int64
Callsign interface{}
Callsign string
QsoAt pgtype.Timestamptz
// Truncated copy of qso_at used only for duplicate detection. Do not query it directly; use qso_at.
QsoMinute pgtype.Timestamp