diff --git a/apps/authentication/migrations/0004_alter_user_icon.py b/apps/authentication/migrations/0004_alter_user_icon.py new file mode 100644 index 0000000..deb642f --- /dev/null +++ b/apps/authentication/migrations/0004_alter_user_icon.py @@ -0,0 +1,20 @@ +# Generated by Django 3.2.16 on 2024-01-18 20:14 + +import apps.authentication.models +from django.db import migrations, models +import pathlib + + +class Migration(migrations.Migration): + + dependencies = [ + ('authentication', '0003_alter_user_icon'), + ] + + operations = [ + migrations.AlterField( + model_name='user', + name='icon', + field=models.ImageField(default=pathlib.PurePosixPath('/mnt/storage/projects/Websites/ticket-website/static/images/defaultuser.webp'), storage=apps.authentication.models.OverwriteStorage(), upload_to=apps.authentication.models.IconPathGenerator(), verbose_name='profile picture'), + ), + ]