camp/photologue/migrations/0003_auto_20140822_1716.py
2025-03-24 11:35:33 +00:00

16 lines
487 B
Python

from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('photologue', '0002_photosize_data'),
]
operations = [
migrations.AlterField(
model_name='galleryupload',
name='title',
field=models.CharField(null=True, help_text='All uploaded photos will be given a title made up of this title + a sequential number.', max_length=50, verbose_name='title', blank=True),
),
]