mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
20 lines
475 B
Python
20 lines
475 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("auditlog", "0016_logentry_remote_port"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="logentry",
|
|
name="actor_email",
|
|
field=models.CharField(
|
|
null=True,
|
|
verbose_name="actor email",
|
|
blank=True,
|
|
max_length=254,
|
|
),
|
|
),
|
|
]
|