Updates for the eventify model to enable teh all year event

This commit is contained in:
Vivek
2025-12-20 03:46:04 +05:30
parent d1e618e06b
commit 1f9269467c
5 changed files with 111 additions and 6 deletions

View 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/'),
),
]