Files
vrobbler/vrobbler/apps/profiles/migrations/0032_userprofile_weigh_in_units.py
Colin Powell 0d6b2c4afc
All checks were successful
build & deploy / test (push) Successful in 1m44s
build & deploy / build-and-deploy (push) Successful in 26s
[tasks] Add unit handling to weigh-ins
2026-05-21 09:42:40 -04:00

25 lines
576 B
Python

# 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,
),
),
]