From be7919003cf3ce01c739db593abc23a8ed028b25 Mon Sep 17 00:00:00 2001 From: adRn-s Date: Thu, 7 Dec 2023 14:13:15 +0100 Subject: [PATCH] realip logging goes to db, right he --- .../migrations/0007_request_approval.py | 18 ++++++++++++++++++ backend/request/migrations/max_migration.txt | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 backend/request/migrations/0007_request_approval.py diff --git a/backend/request/migrations/0007_request_approval.py b/backend/request/migrations/0007_request_approval.py new file mode 100644 index 000000000..fe30c9265 --- /dev/null +++ b/backend/request/migrations/0007_request_approval.py @@ -0,0 +1,18 @@ +# Generated by Django 4.2.7 on 2023-12-07 13:12 + +import request.models +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("request", "0006_request_metapaths"), + ] + + operations = [ + migrations.AddField( + model_name="request", + name="approval", + field=models.JSONField(default=request.models.approval_default), + ), + ] diff --git a/backend/request/migrations/max_migration.txt b/backend/request/migrations/max_migration.txt index e8b7ffa9a..a02496d2d 100644 --- a/backend/request/migrations/max_migration.txt +++ b/backend/request/migrations/max_migration.txt @@ -1 +1 @@ -0006_request_metapaths +0007_request_approval