mentorenwahl/docker/backend/src/mw/db/student.cr
2022-01-08 13:29:22 +01:00

16 lines
223 B
Crystal

require "granite"
module MW
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