add user login sessions

This commit is contained in:
2025-01-23 14:42:34 -06:00
parent 2eb72988e5
commit c1ed5dafe3
4 changed files with 46 additions and 0 deletions

View File

@@ -48,3 +48,9 @@ type User struct {
LastLogin interface{}
CreatedAt sql.NullString
}
type UserSession struct {
ID string
UserID string
CreatedAt string
}