mentorenwahl/docker/backend/src/backend/db/teacher.cr
Dominic Grimm 5bc10f8aaf
Some checks failed
continuous-integration/drone/push Build is failing
Added worker
2022-01-23 09:12:57 +01:00

15 lines
266 B
Crystal

module Backend
module Db
class Teacher < Granite::Base
table teachers
belongs_to :user
has_many teacher_votes : TeacherVote
column id : Int64, primary: true
column max_students : Int32
column skif : Bool
end
end
end