[tasks] Add unit handling to weigh-ins
All checks were successful
build & deploy / test (push) Successful in 1m44s
build & deploy / build-and-deploy (push) Successful in 26s

This commit is contained in:
2026-05-21 09:42:40 -04:00
parent 9d3f7f434f
commit 0d6b2c4afc
5 changed files with 120 additions and 16 deletions

View File

@ -0,0 +1,24 @@
# Generated by Django 4.2.29 on 2026-05-21 13:38
from django.db import migrations, models
import profiles.models
class Migration(migrations.Migration):
dependencies = [
("profiles", "0031_add_home_scrobble_limit"),
]
operations = [
migrations.AddField(
model_name="userprofile",
name="weigh_in_units",
field=models.CharField(
choices=profiles.models.WeighUnit.choices,
default=profiles.models.WeighUnit.METRIC,
max_length=16,
),
),
]