django_postgres_extensions
django_postgres_extensions copied to clipboard
RecursionError: maximum recursion depth exceeded in comparison
Hello! I use model from the example of ArrayManyToManyField:
class Publication(models.Model):
title = models.CharField(max_length=30)
def __str__(self):
return self.title
class Meta:
ordering = ('title',)
class Article(models.Model):
headline = models.CharField(max_length=100)
publications = ArrayManyToManyField(Publication, name='publications')
def __str__(self):
return self.headline
class Meta:
ordering = ('headline',)
And after I start command makemigrations I get error: RecursionError: maximum recursion depth exceeded in comparison
Could you help ?
same happened to me, this extension is really helpful, @primal100 can you please check this?
Hi, @ramax495, @omaraltayyan !
RecursionError: maximum recursion depth exceeded in comparison
Could you help ?
Fixed with pull request #12