init commit
This commit is contained in:
18
workout/migrations/0015_alter_completedworkout_difficulty.py
Normal file
18
workout/migrations/0015_alter_completedworkout_difficulty.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# 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')]),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user