Files
zulip/zerver/migrations/0381_alter_userprofile_uuid.py
Mateusz Mandera c3209d379c models: Make UserProfile.uuid not nullable.
This is in a separate commit to make deployment easier. It ensures that
this is only marked non-null after the backfill migration (backfilling
.uuid for all old UserProfiles) runs - which was added in the previous
commit.
2022-03-14 17:47:30 -07:00

21 lines
427 B
Python

# Generated by Django 3.2.12 on 2022-03-05 15:03
import uuid
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0380_userprofile_uuid_backfill"),
]
operations = [
migrations.AlterField(
model_name="userprofile",
name="uuid",
field=models.UUIDField(default=uuid.uuid4, unique=True),
),
]