I’m learning Django in sqlite, the numbering of new objects starts from 8, not from 1 which I set.
P.S I couldn’t find the answer to my question on the internet.
News - model names
News.objects.all().delete()
then i created new table objects
News('title = ‘news 1’, content = ‘news content 1’)
news1 = _
news1.title
news1.save()
news1.id
8