store sessions in db

This commit is contained in:
Huskydog9988
2025-03-14 11:35:12 -04:00
parent 61764e81b8
commit cf0af15854
3 changed files with 88 additions and 2 deletions

View File

@ -50,3 +50,8 @@ model Certificate {
blacklisted Boolean @default(false)
}
model Session {
token String @id
data Json
}