You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm on Django 2.1.
This error appears on trying makemigrations with a basic model:
from django.db import models
from django.utils.translation import ugettext as _
# 2nd party
from linguo.models import MultilingualModel # used for internationalization of models
from linguo.managers import MultilingualManager # used for internationalization of models
# Create your models here.
class Chapter(MultilingualModel):
number = models.IntegerField(verbose_name=_('number'))
title = models.CharField(max_length=255, verbose_name=_('title'))
class Meta:
translate = ('number', 'title')
The text was updated successfully, but these errors were encountered:
I'm on Django 2.1.
This error appears on trying
makemigrations
with a basic model:The text was updated successfully, but these errors were encountered: