# Generated by Django 5.2.7 on 2026-02-07 08:22 import django.db.models.deletion from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='CaptureTask', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('task_type', models.CharField(choices=[('fans', '粉丝 (Fans)'), ('following', '关注 (Following)'), ('comments', '评论 (Comments)')], max_length=20)), ('raw_content', models.TextField()), ('created_at', models.DateTimeField(auto_now_add=True)), ], ), migrations.CreateModel( name='CapturedUser', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('nickname', models.CharField(blank=True, max_length=255, null=True)), ('user_id', models.CharField(blank=True, max_length=255, null=True)), ('profile_link', models.URLField(blank=True, max_length=500, null=True)), ('comment_text', models.TextField(blank=True, null=True)), ('created_at', models.DateTimeField(auto_now_add=True)), ('task', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='users', to='core.capturetask')), ], ), ]