Django_jsonform не обнаруживает изменений при попытке сделать миграции

< <
class NewQuiz(models.Model):
    ITEMS_SCHEMA = {
            'type': 'array', 
            'items': {
                'type': 'object',
                'properties': {
                    'question_english': { 'type': 'string' },
                    'answers': {
                        'type': 'array',
                        'items': {
                            'type': 'object',
                            'properties': {
                                'answer_english': { 'type': 'string' },
                                'is_correct': {
                                    'type': 'boolean',
                                    'title': 'Is correct',
                                    'default': False,
                                }
                            }
                        }
                    },
                    'explanation_english': { 'type': 'string' },
                }
            }
    }
<
Вернуться на верх