-
-
Notifications
You must be signed in to change notification settings - Fork 635
Expand file tree
/
Copy path0188_ja4dbentry.py
More file actions
35 lines (30 loc) · 1.08 KB
/
0188_ja4dbentry.py
File metadata and controls
35 lines (30 loc) · 1.08 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 4.2.27 on 2026-03-27 00:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("analyzers_manager", "0187_remove_dehashed_analyzer"),
]
operations = [
migrations.CreateModel(
name="Ja4DBEntry",
fields=[
(
"id",
models.BigAutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("updated_at", models.DateTimeField(auto_now=True)),
("fingerprint_type", models.CharField(db_index=True, max_length=20)),
("fingerprint_value", models.CharField(db_index=True, max_length=1024)),
("details", models.JSONField(default=dict)),
],
options={
"verbose_name": "JA4 DB Entry",
"verbose_name_plural": "JA4 DB Entries",
},
),
]