You have already completed these exercises!
Do you want to take them again?
You completed the DJANGO Update Model Exercises from W3Schools.com
Share on:
What is a correct syntax for adding a field that allows NULL values?
phone = models.IntegerField(True)
phone = models.IntegerField(null=True)
phone = models.IntegerField(null=False)