mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2024-12-28 16:12:13 +00:00
37 lines
1010 B
Python
37 lines
1010 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.4 on 2017-09-16 06:22
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import jsonfield.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('account', '0005_auto_20170830_1154'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='session_keys',
|
|
field=jsonfield.fields.JSONField(default=[]),
|
|
),
|
|
migrations.RenameField(
|
|
model_name='userprofile',
|
|
old_name='phone_number',
|
|
new_name='github',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='userprofile',
|
|
name='avatar',
|
|
field=models.CharField(default='/static/avatar/default.png', max_length=50),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='userprofile',
|
|
name='github',
|
|
field=models.CharField(blank=True, max_length=50, null=True),
|
|
),
|
|
]
|