Files
offline-db/users/migrations/0040_user_bio.py
1679d766c9 Fix badge system tests, validate_image_mimetype, and user bio migrations (#345)
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
Co-authored-by: Senpai-YoloBot <41898282+github-actions[bot]@users.noreply.github.com>
2026-04-19 21:07:24 +00:00

18 lines
410 B
Python

# Generated by Django 5.1.6 on 2026-04-19 20:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("users", "0039_alter_user_username"),
]
operations = [
migrations.AddField(
model_name="user",
name="bio",
field=models.TextField(blank=True, max_length=500, verbose_name="bio"),
),
]