1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.10.5 on 2017-02-11 00:30
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('accounts', '0002_auto_20170206_2358'),
- ]
- operations = [
- migrations.AddField(
- model_name='profile',
- name='notes',
- field=models.TextField(blank=True, default=''),
- ),
- ]
|