First commit
This commit is contained in:
commit
440f5a7df4
1563 changed files with 217996 additions and 0 deletions
19
users/migrations/0002_alter_profile_avatar.py
Normal file
19
users/migrations/0002_alter_profile_avatar.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 4.2.17 on 2024-12-14 09:46
|
||||
|
||||
from django.db import migrations, models
|
||||
import users.models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('users', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='profile',
|
||||
name='avatar',
|
||||
field=models.ImageField(default='default.jpg', upload_to=users.models.user_avatar_path),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue