mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-19 05:54:07 +01:00
19 lines
468 B
Python
19 lines
468 B
Python
# Generated by Django 4.2.6 on 2023-11-04 19:15
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0002_customuser_refresh_token'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='customuser',
|
|
name='profile_pic',
|
|
field=models.ImageField(blank=True, default='profile_pics/default.png', null=True, upload_to='profile_pics'),
|
|
),
|
|
]
|