You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.6 on 2016-07-08 13:53
|
|
from __future__ import unicode_literals
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
from django.utils.timezone import utc
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0018_auto_20160630_1846'),
|
|
]
|
|
|
|
operations = [
|
|
# migrations.RemoveField(
|
|
# model_name='user',
|
|
# name='nickname',
|
|
# ),
|
|
# migrations.AddField(
|
|
# model_name='user',
|
|
# name='data_joined',
|
|
# field=models.DateTimeField(default=django.utils.timezone.now),
|
|
# ),
|
|
# migrations.AddField(
|
|
# model_name='user',
|
|
# name='username',
|
|
# field=models.CharField(default=datetime.datetime(2016, 7, 8, 13, 53, 51, 625003, tzinfo=utc), max_length=50, unique=True),
|
|
# preserve_default=False,
|
|
# ),
|
|
migrations.AlterField(
|
|
model_name='user',
|
|
name='date_of_birth',
|
|
field=models.DateTimeField(blank=True, null=True),
|
|
),
|
|
]
|
|
|