gregmuellegger / django-autofixture

Can create auto-generated test data.
BSD 3-Clause "New" or "Revised" License
460 stars 118 forks source link

Add support to model with strings in max_lenght #46

Closed ad-m closed 9 years ago

ad-m commented 10 years ago

Django code:

  title = models.CharField(max_length=250)

and

  title = models.CharField(max_length="250")

are equal, but one of them make django-autofixture fail. This fix that.

gregmuellegger commented 9 years ago

Cheers :)