mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
17 lines
423 B
Python
17 lines
423 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("auditlog", "0015_alter_logentry_changes"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="logentry",
|
|
name="remote_port",
|
|
field=models.PositiveIntegerField(
|
|
blank=True, null=True, verbose_name="remote port"
|
|
),
|
|
),
|
|
]
|