0003_profile_avatar.py 400 B

123456789101112131415161718
  1. # Generated by Django 3.2.5 on 2021-07-08 14:07
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('account', '0002_devices'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='profile',
  10. name='avatar',
  11. field=models.ImageField(blank=True, upload_to='avatar/%Y%m%d/'),
  12. ),
  13. ]