-
-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy path0005_auto_20200917_1952.py
More file actions
35 lines (30 loc) · 1.25 KB
/
0005_auto_20200917_1952.py
File metadata and controls
35 lines (30 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Generated by Django 3.1.1 on 2020-09-17 22:52
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("traffic_control", "0004_blockedrequest_status_code"),
]
operations = [
migrations.AlterField(
model_name="blockedrequest", name="headers", field=models.JSONField(blank=True, default=dict, null=True),
),
migrations.AlterField(
model_name="blockedrequest", name="path", field=models.TextField(blank=True, default="", null=True),
),
migrations.AlterField(
model_name="blockedrequest",
name="query_string",
field=models.JSONField(blank=True, default=dict, null=True),
),
migrations.AlterField(
model_name="blockedrequest", name="source_ip", field=models.GenericIPAddressField(blank=True, null=True),
),
migrations.AlterField(
model_name="blockedrequest",
name="status_code",
field=models.PositiveSmallIntegerField(blank=True, default=429, null=True),
),
migrations.AlterField(
model_name="blockedrequest", name="user_agent", field=models.TextField(blank=True, default="", null=True),
),
]