|
|
from django.db import migrations, models
|
|
from django.db import migrations, models
|
|
|
('output', models.CharField(default='', max_length=500)),
|
|
('output', models.CharField(default='', max_length=500)),
|
|
|
('start_ts', models.DateTimeField()),
|
|
('start_ts', models.DateTimeField()),
|
|
|
('end_ts', models.DateTimeField()),
|
|
('end_ts', models.DateTimeField()),
|
|
|
|
|
+ ('extractor', models.CharField(choices=[('title', 'title'), ('favicon', 'favicon'), ('wget', 'wget'), ('singlefile', 'singlefile'), ('pdf', 'pdf'), ('screenshot', 'screenshot'), ('dom', 'dom'), ('readability', 'readability'), ('mercury', 'mercury'), ('git', 'git'), ('media', 'media'), ('headers', 'headers'), ('archive_org', 'archive_org')], max_length=20)),
|
|
|
('snapshot', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.Snapshot')),
|
|
('snapshot', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.Snapshot')),
|