parent
f06e38110b
commit
d31e6d3555
1 changed files with 19 additions and 0 deletions
@ -0,0 +1,19 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('customer', '0002_auto_20170506_2305'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='userprofile', |
||||
name='user_session_key', |
||||
field=models.CharField(verbose_name='Ключ сессии (служебная информация)', max_length=256, blank=True, default='', help_text='Руками не трогать...'), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue