Here is some code from a Django 3.1 migration:
migrations.AlterField(
model_name='foo',
name='blarg',
field=models.BigIntegerField(default=theapp.util.make_id, primary_key=True,
serialize=False),
),
What does the serialize=False
mean in this context? I read some code and docs, and it wasn't obvious.