hello guys I'm doing a django tutorial and i missed a change the instructor did in models.py so i fix it but when trying to make the migration to the db it gives me a code that I don't understand or i don't know what to do, here is what it says:
(tonyto) PS E:\web-dev\Python\Django1\myappito> python manage.py makemigrations
Please select a fix:
1) Provide a one-off default now (will be set on all existing rows with a null value for this column)
2) Quit, and let me add a default in models.py
they way it was
name: models.CharField(max_length=100) details: models.CharField(max_length=500)
and this is how i update it
name: models.CharField(max_length=100) details: models.CharField(max_length=500)
thank you in advance.