mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-27 16:14:12 +00:00
16 lines
406 B
Python
16 lines
406 B
Python
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('auditlog', '0002_auto_support_long_primary_keys'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='logentry',
|
|
name='remote_addr',
|
|
field=models.GenericIPAddressField(null=True, verbose_name='remote address', blank=True),
|
|
),
|
|
]
|