Sé que desde Django 1.7 no necesito usar South ni ningún otro sistema de migración, así que solo estoy usando un comando simple python manage.py makemigrations
Sin embargo, todo lo que obtengo es este error:
You are trying to add a non-nullable field 'new_field' to userprofile without a default;
we can't do that (the database needs something to populate existing rows).
Aquí está models.py:
class UserProfile(models.Model):
user = models.OneToOneField(User)
website = models.URLField(blank=True)
new_field = models.CharField(max_length=140)
¿Cuáles son las opciones?