28 lines
993 B
Python
28 lines
993 B
Python
# Generated by Django 5.2.7 on 2025-11-15 22:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='ScamReport',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('description', models.TextField(help_text='Describe the suspicious activity.')),
|
|
('source', models.CharField(blank=True, help_text='The source (e.g., URL, email address).', max_length=255, null=True)),
|
|
('reported_at', models.DateTimeField(auto_now_add=True)),
|
|
('status', models.CharField(choices=[('PENDING', 'Pending'), ('VERIFIED', 'Verified'), ('DISMISSED', 'Dismissed')], default='PENDING', max_length=10)),
|
|
],
|
|
options={
|
|
'ordering': ['-reported_at'],
|
|
},
|
|
),
|
|
]
|