修复小 bug

This commit is contained in:
virusdefender
2015-10-12 12:53:16 +08:00
parent 3761c15ae2
commit b34009a6b3
2 changed files with 20 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('account', '0009_user_reset_password_token_create_time'),
]
operations = [
migrations.RemoveField(
model_name='user',
name='login_failed_counter',
),
]