2017-04-13 15:44:46 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-04-13 12:42
from __future__ import unicode_literals
from django . db import migrations , models
class Migration ( migrations . Migration ) :
2019-06-16 12:32:24 +00:00
dependencies = [ ( " profiles " , " 0001_initial " ) ]
2017-04-13 15:44:46 +00:00
operations = [
migrations . AddField (
2019-06-16 12:32:24 +00:00
model_name = " profile " ,
name = " description " ,
field = models . TextField (
default = " " ,
help_text = " Please include any info you think could be relevant, like drivers license, first aid certificates, crafts, skills and previous experience. " ,
) ,
)
2017-04-13 15:44:46 +00:00
]