This commit is contained in:
2025-12-18 19:59:57 +02:00
parent 6c9f8bcec0
commit 73343fd57b

View File

@@ -13,7 +13,7 @@ type SQLiteTokenStore struct {
type Token struct {
TokenID string `gorm:"primaryKey"`
UserID int64 `gorm:"index"`
UserID int64 `gorm:"index"`
Expiration time.Time `gorm:"index"`
}