mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
18 lines
447 B
Python
18 lines
447 B
Python
# Generated by Django 4.2.2 on 2023-06-26 12:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0002_customuser_is_studying_alter_customuser_first_name_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='customuser',
|
|
name='avatar',
|
|
field=models.ImageField(null=True, upload_to='images'),
|
|
),
|
|
]
|