[drinks] Rename beers to drinks and add new models
This commit is contained in:
@ -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,
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user