add sessions

This commit is contained in:
2025-02-13 07:37:06 -06:00
parent e00a85b1a4
commit f948a06b66
4 changed files with 75 additions and 2 deletions

View File

@@ -57,6 +57,13 @@ type Customer struct {
CreatedAt string
}
type Session struct {
ID string
UserID string
CreatedAt sql.NullTime
ExpiresAt time.Time
}
type SvgIcon struct {
ID int64
Svg string