Running through the polls tutorial I ran this line:
q = Question(question_text="What's new?", pub_date=timezone.now())
Now, I've already ran:
python manage.py flush
But when I save and check the ID, I noticed that the id is still incrementing.
>>> q.save()
>>>q.id
3
Why is the id value not 1? Why are the id values preserved even though the db was destroyed?