You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Native UUID requires more work to be more stable,
reverting until the required changes are made.
For example, the last migrations in the list below results in the following incorrect SQL:
ALTER TABLE [ProcessTask] ADD DEFAULT 8017c963-68eb-4bde-babd-27fbd7240fc2 FOR [attempt]
operations = [
migrations.CreateModel(
name='UUIDModel',
fields=[
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
('other', models.UUIDField(null=True)),
],
),
migrations.AlterField(
model_name='uuidmodel',
name='other',
field=models.UUIDField(default=uuid.uuid4),
),
]
0 commit comments