mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
19 lines
471 B
Python
19 lines
471 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
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),
|
|
),
|
|
]
|