mentorenwahl/backend/src/backend/db/config.cr
Dominic Grimm d6dbd18090
Some checks failed
continuous-integration/drone/push Build is failing
Add student vote enable toggle to admin panel
2023-02-04 12:14:11 +01:00

12 lines
178 B
Crystal

module Backend::Db
class Config
include Clear::Model
self.table = :configs
primary_key type: serial
column active : Bool
column can_vote : Bool
end
end