mentorenwahl/backend/src/backend/db/token.cr
Dominic Grimm 7e1eda596c
All checks were successful
continuous-integration/drone/push Build is passing
Update frontend dockerfile
2022-11-13 18:41:53 +01:00

14 lines
195 B
Crystal

module Backend::Db
class Token
include Clear::Model
self.table = :tokens
primary_key type: :uuid
column iat : Time
column exp : Time
belongs_to user : User
end
end