mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-25 07:13:54 +00:00
17 lines
391 B
Python
17 lines
391 B
Python
import jsonfield.fields
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("auditlog", "0003_logentry_remote_addr"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="logentry",
|
|
name="additional_data",
|
|
field=jsonfield.fields.JSONField(null=True, blank=True),
|
|
),
|
|
]
|