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

15 lines
220 B
Crystal

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