mirror of
https://github.com/MarcZierle/photo-log-backend.git
synced 2025-01-07 14:57:58 +00:00
20 lines
467 B
Python
20 lines
467 B
Python
|
# Generated by Django 3.2.8 on 2022-01-18 19:56
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import photo_log.models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('photo_log', '0008_auto_20220118_1847'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='photolog',
|
||
|
name='pdf',
|
||
|
field=models.FileField(blank=True, null=True, upload_to=photo_log.models.get_photolog_pdf_path),
|
||
|
),
|
||
|
]
|