You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
552 B
20 lines
552 B
# Generated by Django 6.0.8 on 2026-08-08 10:04
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ads', '0001_initial'),
|
|
('crawler', '0002_alter_crawlrun_crawl_task'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='adevaluation',
|
|
name='crawl_task',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='evaluations', to='crawler.crawltask'),
|
|
),
|
|
]
|