X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/57a3ad0520284210f945b0e2f91f67233e49d07e..b9166b62220208f49bfd3521e547d60d377ab7c1:/src/wlxml/migrations/0004_auto_20210814_1052.py diff --git a/src/wlxml/migrations/0004_auto_20210814_1052.py b/src/wlxml/migrations/0004_auto_20210814_1052.py new file mode 100644 index 00000000..287c9eab --- /dev/null +++ b/src/wlxml/migrations/0004_auto_20210814_1052.py @@ -0,0 +1,23 @@ +# Generated by Django 3.1.13 on 2021-08-14 10:52 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('wlxml', '0003_auto_20210813_2321'), + ] + + operations = [ + migrations.AddField( + model_name='tag', + name='example_html', + field=models.FileField(blank=True, upload_to='wlxml/tag/example/html/'), + ), + migrations.AddField( + model_name='tag', + name='example_pdf', + field=models.FileField(blank=True, upload_to='wlxml/tag/example/pdf/'), + ), + ]