mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-16 22:20:26 +00:00
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 22.12.0 → 23.1.0](https://github.com/psf/black/compare/22.12.0...23.1.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
17 lines
435 B
Python
17 lines
435 B
Python
from django.db import migrations, models
|
|
|
|
|
|
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
|
|
),
|
|
),
|
|
]
|