0004_auto_20160531_1422.py 438 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('student', '0003_auto_20160516_0938'),
    ]

    operations = [
        migrations.AlterField(
            model_name='userprofile',
            name='profile_image_uploaded_at',
            field=models.DateTimeField(null=True, blank=True),
        ),
    ]