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

14 lines
174 B
Crystal

require "granite"
module MW
module Db
class Admin < Granite::Base
table admins
belongs_to :user
column id : Int64, primary: true
end
end
end