Private
Public Access
1
0
Files
rowsandall/rowers/migrations/0038_auto_20160629_1023.py
sanderroosendaal 3eed3cc3e7 Uploading files
2016-10-30 17:39:32 +01:00

26 lines
786 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-06-29 08:23
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rowers', '0037_auto_20160629_1014'),
]
operations = [
migrations.AlterField(
model_name='workout',
name='boattype',
field=models.CharField(blank=True, choices=[('1x', '1x (single)'), ('2x', '2x (double - not working)')], default='1x', max_length=50, verbose_name='Boat Type'),
),
migrations.AlterField(
model_name='workout',
name='weightvalue',
field=models.FloatField(blank=True, default=80.0, verbose_name='Average Crew Weight (kg)'),
),
]