I am preparing a model as follows:
class SomeModel(models.Model): id = models.BigIntegerField(primary_key=True, null=False, unique=True)
I'm not a django user but I think the postgresql command you are looking for is:
ALTER SEQUENCE big_integer_seq RESTART 100000000;
Best to read the documentation for django/postgresql.