Preliminary source objects.
[redakcja.git] / src / sources / migrations / 0003_source_modified_at_source_processed_at.py
1 # Generated by Django 4.1.9 on 2023-10-03 12:13
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ("sources", "0002_source_wikisource"),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name="source",
15             name="modified_at",
16             field=models.DateTimeField(blank=True, null=True),
17         ),
18         migrations.AddField(
19             model_name="source",
20             name="processed_at",
21             field=models.DateTimeField(blank=True, null=True),
22         ),
23     ]