From e15c0bd20d814460a3e1c312e86619d1e6709ebb Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Sun, 30 Apr 2017 14:12:00 +0200 Subject: [PATCH] add missing migration for profiles --- .../migrations/0004_auto_20170430_1408.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/profiles/migrations/0004_auto_20170430_1408.py diff --git a/src/profiles/migrations/0004_auto_20170430_1408.py b/src/profiles/migrations/0004_auto_20170430_1408.py new file mode 100644 index 00000000..78107471 --- /dev/null +++ b/src/profiles/migrations/0004_auto_20170430_1408.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.5 on 2017-04-30 12:08 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('profiles', '0003_auto_20170413_1703'), + ] + + operations = [ + migrations.AlterField( + model_name='profile', + name='description', + field=models.TextField(blank=True, default='', help_text='Please include any info you think could be relevant, like drivers license, first aid certificates, crafts, skills and previous experience. Please also include availability if you are not there for the full week.'), + ), + ]