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

15 lines
218 B
Crystal

require "granite"
module MW
module Db
class Vote < Granite::Base
table votes
belongs_to :student
has_many teacher_votes : TeacherVote
column id : Int64, primary: true
end
end
end