hobo/hobo/applications/migrations/0002_icon.py

22 lines
594 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('applications', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='application',
name='icon',
field=models.FileField(
blank=True,
help_text='Icon file must be in JPEG or PNG format, and should be a square of at least 512×512 pixels.',
null=True,
upload_to='applications/icons/',
verbose_name='Icon',
),
),
]