21 lines
512 B
Python
21 lines
512 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.5 on 2016-05-25 12:50
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('rowers', '0020_auto_20160522_1726'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='rower',
|
|
name='rowerplan',
|
|
field=models.CharField(choices=[('basic', 'basic'), ('pro', 'pro')], default='basic', max_length=30),
|
|
),
|
|
]
|