Updates for the eventify model to enable teh all year event
This commit is contained in:
18
accounts/migrations/0007_alter_user_profile_picture.py
Normal file
18
accounts/migrations/0007_alter_user_profile_picture.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.0 on 2025-12-19 22:14
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('accounts', '0006_user_profile_picture'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='user',
|
||||
name='profile_picture',
|
||||
field=models.ImageField(blank=True, default='default.png', null=True, upload_to='profile_pictures/'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user