19 lines
446 B
Python
19 lines
446 B
Python
# Generated by Django 5.2.8 on 2025-11-26 18:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('reports', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='scamreport',
|
|
name='is_auto_discovered',
|
|
field=models.BooleanField(default=False, help_text='Automatically discovered by OSINT system'),
|
|
),
|
|
]
|