sequencefield
simple model field taking it's value from a postgres sequence. This is an easy replacement for django autofield offering the following advantages:
- Sequence could be shared among multiple models (db tables), so you can now have unique id among multiple django models
- Possibility to generate alphanumeric id of the form "{PREFIX}_{ID}"
- Unique Id could also be combined with data from other field to build complex id. One example is given that combine unique id with date information to offer an efficient table indexing/clustering for faster data retrieval when filtering on date. (Particularly useful with BRIN index)
Installation
- Run
pip install django-sequencefield - Use a (Small/Big)IntegerSequenceField in one of your model
- Add a SequenceConstraint into the same model to name the sequence field to use and which id should take values from this sequence constraint
Usage
Settings
This package doesn't need any setting.
Simple Example
Just add a sequence field(s) to your models like this:
from django.db import models
from sequencefield.constraints import IntSequenceConstraint
from sequencefield.fields import IntegerSequenceField
class IntSequenceModel(models.Model):
id = IntegerSequenceField(primary_key=True) #primary_key=False works too
class Meta:
constraints = [
IntSequenceConstraint(
name="%(app_label)s_%(class)s_custseq",
sequence="int_custseq", #name of sequence to use
drop=False, #avoid deleting the sequence if shared among multiple tables
fields=["id"], #name of the field that should be populated by this sequence
start=100, #first value of the sequence
maxvalue=200 #max value allowed for the sequence, will raise error if we go above, use None for the maximum allowed value of the db
)
]
Simple AlphaNumeric Example
Just add an AlphaNumericSequenceField field(s) to your models like this. You can provide a "format" argument to define how to convert the number to char. The syntax is the one used in postgres to_char function (see here). In the example bellow, we will get sequence values: INV_000001, INV_000002, INV_000003, ...
from django.db import models
from sequencefield.constraints import IntSequenceConstraint
from sequencefield.fields import AlphaNumericSequenceField
class AlphaNumericSequenceModel(models.Model):
seqid = AlphaNumericSequenceField(
primary_key=False, prefix="INV", format="FM000000"
)
class Meta:
constraints = [
IntSequenceConstraint(
name="%(app_label)s_%(class)s_custseq",
sequence="alphanum_custseq", , #name of sequence to use
drop=False, #avoid deleting the sequence if shared among multiple tables
fields=["seqid"], #name of the field that should be populated by this sequence
start=1,
)
]
Advance Example
Just add a sequence field(s) to your models like this:
from django.db import models
from sequencefield.constraints import BigIntSequenceConstraint
from sequencefield.fields import BigIntegerWithDateSequenceField
class BigIntSequenceModel(models.Model):
id = models.BigIntegerField(primary_key=True, auto_created=False)
created = models.DateTimeField(editable=False)
seqid = BigIntegerWithDateSequenceField(datetime_field="created") #this field with combine values from the sequence with date timestamp
# the 2 first bytes of the bigint will contains the number of days since 1/1/1970
# the 6 following bytes will contains a unique id coming from the sequence
class Meta:
constraints = [
BigIntSequenceConstraint(
name="%(app_label)s_%(class)s_custseq",
sequence="gdw_post_custseq", #name of the quence
drop=False, #avoid deleting the sequence if shared among multiple tables
fields=["seqid"], #field to be populated from this sequence
start=1, #first value of the sequence
)
]
Remarks
Until we find a good solution to properly handle supression of a sequence shared among multiple tables, It's better to pass the flag drop=False in the SequenceConstraint. Otherwise a sequence that is still being used by another table might be deleted.
Testing
# clone repository
git clone https://github.com/quertenmont/django-sequencefield.git && cd sequencefield
# create virtualenv and activate it
python -m venv venv && . venv/bin/activate
# upgrade pip
python -m pip install --upgrade pip
# install requirements
pip install -r requirements.txt -r requirements-test.txt
# install pre-commit to run formatters and linters
pre-commit install --install-hooks
# run tests
tox
# or
python runtests.py
# or
python -m django test --settings "tests.settings"
License
Released under MIT License.
Supporting
Release files for django-sequencefield 1.0.14
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django_sequencefield-1.0.14.tar.gz | 8.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_sequencefield-1.0.14-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 18.3 kB
Release files / django_sequencefield-1.0.14.tar.gz
| Download URL | django_sequencefield-1.0.14.tar.gz |
|---|---|
| Size | 8.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2b330944220e2c1b9c8c36fb7464dc7d2bb0a3e2819f2a84fa2ac91301c6d4a9
|
|
BLAKE2b-256 checksum How to use checksums |
a49cd816603f40304e7b88fa78c3bea7023c39b9aabe5ef85f885e51999fbb7a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 2, 2026.
Transparency logRelease files / django_sequencefield-1.0.14-py3-none-any.whl
| Download URL | django_sequencefield-1.0.14-py3-none-any.whl |
|---|---|
| Size | 9.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a251330d83d86419a691f6d4025ee34f9d1d681d8b15027a625f8267ebd93131
|
|
BLAKE2b-256 checksum How to use checksums |
16857d7adf0353f4cacee41f29ee24dc467569e690c47a5398d93d4bbfe4182f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jun 2, 2026.
Transparency log