Files
zulip/zilencer/migrations/0042_alter_remoterealmauditlog_realm_id.py
Aman Agrawal 4d60c3a96c models: Allow realm_id to be blank.
We cannot provide realm_id for some remote session logs.
2023-11-30 11:22:19 -08:00

18 lines
420 B
Python

# Generated by Django 4.2.7 on 2023-11-30 11:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zilencer", "0041_remotezulipserver_org_type"),
]
operations = [
migrations.AlterField(
model_name="remoterealmauditlog",
name="realm_id",
field=models.IntegerField(blank=True, null=True),
),
]