Private
Public Access
1
0

Fixed Concept2 Import bug (empty notes field)

This commit is contained in:
sanderroosendaal
2016-11-01 22:38:56 +01:00
parent 86ad96d6c0
commit 23266b02c0
4 changed files with 1082 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-11-01 21:35
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rowers', '0041_rower_friends'),
]
operations = [
migrations.AlterField(
model_name='workout',
name='notes',
field=models.CharField(blank=True, max_length=200, null=True),
),
]