mentorenwahl/backend/src/backend/db/vote.cr
Dominic Grimm 50379148bc
Some checks failed
continuous-integration/drone/push Build is failing
Update codebase
2022-10-31 09:47:26 +01:00

15 lines
249 B
Crystal

module Backend
module Db
class Vote
include Clear::Model
self.table = :votes
primary_key type: :serial
belongs_to student : Student
has_many teacher_votes : TeacherVote, foreign_key: :vote_id
end
end
end