workout/gym/migrations/0009_session_default_theoretical_max_percentage.py

19 lines
471 B
Python
Raw Permalink Normal View History

2018-03-13 09:24:12 +01:00
# Generated by Django 2.0.2 on 2018-03-13 08:16
from django.db import migrations, models
class Migration(migrations.Migration):
2019-06-23 15:39:13 +02:00
dependencies = [("gym", "0008_auto_20180313_0913")]
2018-03-13 09:24:12 +01:00
operations = [
migrations.AddField(
2019-06-23 15:39:13 +02:00
model_name="session",
name="default_theoretical_max_percentage",
field=models.PositiveIntegerField(
default=65, verbose_name="pourcentage par défaut"
),
)
2018-03-13 09:24:12 +01:00
]