Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
| 123456789101112 |
- const Schwifty = require('@hapipal/schwifty')
-
- const questionSchema = require('../schemas/questions')
-
- module.exports = class Question extends Schwifty.Model {
- static get tableName() {
- return 'questions'
- }
- static get joiSchema() {
- return questionSchema.single
- }
- }
|