mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
19 lines
464 B
Python
19 lines
464 B
Python
from django.db import migrations, models
|
|
import jsonfield.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("auditlog", "0004_logentry_detailed_object_repr"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="logentry",
|
|
name="additional_data",
|
|
field=jsonfield.fields.JSONField(
|
|
null=True, verbose_name="additional data", blank=True
|
|
),
|
|
),
|
|
]
|