[drinks] Rename beers to drinks and add new models

This commit is contained in:
2026-07-13 13:26:28 -04:00
parent 77d92f6c96
commit fdc18d5a5f
58 changed files with 3065 additions and 418 deletions

View File

@ -0,0 +1,22 @@
# Generated by Django 4.2.29 on 2026-07-13 16:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("profiles", "0040_userprofile_trends_disabled"),
]
operations = [
migrations.AddField(
model_name="userprofile",
name="volume_unit",
field=models.CharField(
choices=[("metric", "Metric (mL, L)"), ("imperial", "Imperial (oz)")],
default="metric",
max_length=16,
),
),
]