Files
zulip/zerver/migrations/0069_realmauditlog_extra_data.py
Anders Kaseorg 6e4c3e41dc python: Normalize quotes with Black.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-02-12 13:11:19 -08:00

18 lines
391 B
Python

# Generated by Django 1.10.5 on 2017-03-27 20:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0068_remove_realm_domain"),
]
operations = [
migrations.AddField(
model_name="realmauditlog",
name="extra_data",
field=models.TextField(null=True),
),
]