38515-vm/core/migrations/0013_userprofile_profile_pic.py
2026-02-18 07:32:39 +00:00

19 lines
444 B
Python

# Generated by Django 5.2.7 on 2026-02-18 07:10
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('core', '0012_hospital_latitude_hospital_longitude'),
]
operations = [
migrations.AddField(
model_name='userprofile',
name='profile_pic',
field=models.ImageField(blank=True, null=True, upload_to='profile_pics'),
),
]