const Schwifty = require('@hapipal/schwifty') const groupingSchema = require('../schemas/groupings') module.exports = class Grouping extends Schwifty.Model { static get tableName() { return 'groupings' } static get joiSchema() { return groupingSchema.single } }