Files
eventify_backend/accounts/migrations/0006_user_profile_picture.py
2025-12-19 19:35:38 +05:30

19 lines
427 B
Python

# Generated by Django 5.0 on 2025-12-19 13:13
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('accounts', '0005_alter_user_role'),
]
operations = [
migrations.AddField(
model_name='user',
name='profile_picture',
field=models.ImageField(blank=True, null=True, upload_to='profile_pictures/'),
),
]