mirror of
https://github.com/zulip/zulip.git
synced 2025-11-12 18:06:44 +00:00
Given that these values are uuids, it's better to use UUIDField which is meant for exactly that, rather than an arbitrary CharField. This requires modifying some tests to use valid uuids.
19 lines
401 B
Python
19 lines
401 B
Python
# Generated by Django 3.2.9 on 2021-12-22 10:06
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("zilencer", "0020_remotezulipserverauditlog"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="remotezulipserver",
|
|
name="uuid",
|
|
field=models.UUIDField(unique=True),
|
|
),
|
|
]
|