Tôi biết rằng từ Django 1.7, tôi không cần sử dụng South hoặc bất kỳ hệ thống di chuyển nào khác, vì vậy tôi chỉ sử dụng lệnh đơn giản python manage.py makemigrations
Tuy nhiên, tất cả những gì tôi nhận được là lỗi này:
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).
Đây là models.py:
class UserProfile(models.Model):
user = models.OneToOneField(User)
website = models.URLField(blank=True)
new_field = models.CharField(max_length=140)
Các tùy chọn là gì?