21 lines
531 B
Python
21 lines
531 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.5 on 2016-04-28 09:54
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('rowers', '0007_auto_20160428_1153'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='rower',
|
|
name='weightcategory',
|
|
field=models.CharField(choices=[('hwt', 'heavy-weight'), ('lwt', 'light-weight')], default='hwt', max_length=30),
|
|
),
|
|
]
|