19 lines
452 B
Python
19 lines
452 B
Python
# Generated by Django 3.2 on 2021-04-13 17:12
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('library', '0003_person_picture'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='person',
|
|
name='picture',
|
|
field=models.ImageField(blank=True, max_length=256, null=True, upload_to='pictures', verbose_name='picture'),
|
|
),
|
|
]
|