cheesy/moku/migrations/0003_user_avatar.py

24 lines
599 B
Python
Raw Normal View History

2024-03-26 12:18:47 +00:00
# ruff: noqa: E501
2024-03-25 14:11:21 +00:00
# Generated by Django 5.0.3 on 2024-03-25 13:49
from django.db import migrations, models
2024-03-26 12:18:47 +00:00
import moku.models.user
2024-03-25 14:11:21 +00:00
2024-03-26 12:18:47 +00:00
class Migration(migrations.Migration):
dependencies = [("moku", "0002_post")]
2024-03-25 14:11:21 +00:00
operations = [
migrations.AddField(
2024-03-26 12:18:47 +00:00
model_name="user",
name="avatar",
field=models.ImageField(
blank=True,
help_text="a little picture to show up on your profile.",
upload_to=moku.models.user.user_avatar_filename,
verbose_name="avatar",
),
)
2024-03-25 14:11:21 +00:00
]