26 lines
786 B
Python
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)'),
|
|
),
|
|
]
|