18 lines
451 B
Python
18 lines
451 B
Python
# Generated by Django 5.0.10 on 2025-01-12 14:39
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0007_remove_customuser_username_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='customuser',
|
|
name='image',
|
|
field=models.ImageField(blank=True, null=True, upload_to='account/profile_image/'),
|
|
),
|
|
]
|