mentorenwahl/backend/src/backend/db/teacher_vote.cr

14 lines
227 B
Crystal
Raw Normal View History

2022-11-21 18:48:53 +00:00
module Backend::Db
class TeacherVote
include Clear::Model
self.table = :teacher_votes
2022-01-08 12:29:22 +00:00
2022-11-21 18:48:53 +00:00
primary_key type: :serial
2022-01-08 12:29:22 +00:00
2022-11-21 18:48:53 +00:00
belongs_to vote : Vote
belongs_to teacher : Teacher
2022-02-07 20:10:04 +00:00
2022-11-21 18:48:53 +00:00
column priority : Int32
2022-01-08 12:29:22 +00:00
end
end