26 lines
828 B
Python
26 lines
828 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.10.5 on 2017-04-13 15:03
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('profiles', '0002_profile_description'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='profile',
|
||
|
name='name',
|
||
|
field=models.CharField(blank=True, default='', help_text='Your name or handle', max_length=200),
|
||
|
),
|
||
|
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.'),
|
||
|
),
|
||
|
]
|