From d31e6d3555165e8cd07945bafd3af245dcc9e17b Mon Sep 17 00:00:00 2001 From: Dmitriy Shesterkin Date: Mon, 8 May 2017 23:36:28 +0300 Subject: [PATCH] migration --- .../migrations/0003_auto_20170508_2335.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/customer/migrations/0003_auto_20170508_2335.py diff --git a/src/customer/migrations/0003_auto_20170508_2335.py b/src/customer/migrations/0003_auto_20170508_2335.py new file mode 100644 index 0000000..018e6ef --- /dev/null +++ b/src/customer/migrations/0003_auto_20170508_2335.py @@ -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='Руками не трогать...'), + ), + ]