Hello, i have one question when i am doing python manage.py makemigrations but django doesn't create all the fields for the Todo Model, please help what's wrong here?
class Todo(models.Model): task = models.CharField(max_length=255) title = models.CharField(max_length=100), _date = models.CharField(max_length=100), categories = models.CharField(max_length=100), keywords = models.CharField(max_length=100), summary = models.TextField(), description = models.TextField()
Migration Model
`class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Todo',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('task', models.CharField(max_length=255)),
('description', models.TextField()),
],
),
]`





which do i use then?