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

14 lines
209 B
Crystal

module Backend
module Db
class Student < Granite::Base
table students
belongs_to :user
has_one :vote
column id : Int64, primary: true
column skif : Bool
end
end
end