This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-12-05 15:14:08 +00:00
|
|
|
# Generated by Django 2.2.8 on 2019-12-05 15:02
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2019-12-31 11:51:16 +00:00
|
|
|
("passbook_audit", "0003_auto_20191205_1407"),
|
2019-12-05 15:14:08 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
2019-12-31 11:51:16 +00:00
|
|
|
migrations.RemoveField(model_name="event", name="request_ip",),
|
2019-12-05 15:14:08 +00:00
|
|
|
migrations.AddField(
|
2019-12-31 11:51:16 +00:00
|
|
|
model_name="event",
|
|
|
|
name="client_ip",
|
2019-12-05 15:14:08 +00:00
|
|
|
field=models.GenericIPAddressField(null=True),
|
|
|
|
),
|
|
|
|
]
|