मुझे पता है कि Django 1.7 से मुझे दक्षिण या किसी अन्य माइग्रेशन सिस्टम का उपयोग करने की आवश्यकता नहीं है, इसलिए मैं केवल साधारण कमांड का उपयोग कर रहा हूं 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).
यहाँ मॉडल है:
class UserProfile(models.Model):
user = models.OneToOneField(User)
website = models.URLField(blank=True)
new_field = models.CharField(max_length=140)
विकल्प क्या हैं?