Is there a way to set the counter of id values for objects in Django?
For example I have an set of objects \'Video\' that are currently at id=100 the next time I create
You can specify the ID when you create the object, as long as you do it before you save:
new = Video() new.id = 2000 new.save()
You could just calculate the ID you wanted each time - though I'm not sure what's wrong with Django's auto ID fields ;)