mentorenwahl/backend/src/backend/db/token.cr

15 lines
220 B
Crystal
Raw Normal View History

2022-11-13 17:41:53 +00:00
module Backend::Db
class Token
include Clear::Model
self.table = :tokens
primary_key type: :uuid
column iat : Time
column exp : Time
2022-11-21 18:48:53 +00:00
column active : Bool
2022-11-13 17:41:53 +00:00
belongs_to user : User
end
end