19 lines
537 B
Python
19 lines
537 B
Python
# Generated by Django 4.2.2 on 2023-08-14 01:34
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('workout', '0014_rename_workout_uuid_completedworkout_health_kit_workout_uuid'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='completedworkout',
|
|
name='difficulty',
|
|
field=models.PositiveSmallIntegerField(choices=[(0, 'na'), (1, 'easy'), (2, 'moderate'), (3, 'average'), (4, 'hard'), (5, 'death')]),
|
|
),
|
|
]
|