123456789101112131415161718 |
- # Generated by Django 3.2.5 on 2021-07-08 14:07
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('account', '0002_devices'),
- ]
- operations = [
- migrations.AddField(
- model_name='profile',
- name='avatar',
- field=models.ImageField(blank=True, upload_to='avatar/%Y%m%d/'),
- ),
- ]
|