ฉันรู้ว่าจาก Django 1.7 ฉันไม่จำเป็นต้องใช้ South หรือระบบการโยกย้ายอื่น ๆ ดังนั้นฉันแค่ใช้คำสั่งง่ายๆ python manage.py makemigrations
อย่างไรก็ตามสิ่งที่ฉันได้รับคือข้อผิดพลาดนี้:
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).
นี่คือ models.py:
class UserProfile(models.Model):
user = models.OneToOneField(User)
website = models.URLField(blank=True)
new_field = models.CharField(max_length=140)
ตัวเลือกคืออะไร?