0022_auto_20231023_2008.py 736 B

123456789101112131415161718
  1. # Generated by Django 3.1.14 on 2023-10-23 20:08
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('core', '0021_auto_20220914_0934'),
  6. ]
  7. operations = [
  8. migrations.AlterField(
  9. model_name='archiveresult',
  10. name='extractor',
  11. field=models.CharField(choices=[('favicon', 'favicon'), ('headers', 'headers'), ('singlefile', 'singlefile'), ('pdf', 'pdf'), ('screenshot', 'screenshot'), ('dom', 'dom'), ('wget', 'wget'), ('title', 'title'), ('readability', 'readability'), ('mercury', 'mercury'), ('htmltotext', 'htmltotext'), ('git', 'git'), ('media', 'media'), ('archive_org', 'archive_org')], max_length=32),
  12. ),
  13. ]