From 5c18ede16a2738cbc2ed95c94c551104c026c127 Mon Sep 17 00:00:00 2001 From: Dmitriy Shesterkin Date: Sat, 6 May 2017 08:21:28 +0300 Subject: [PATCH] fix length field address model OrderData set 100 => 255 --- store/migrations/0059_auto_20170506_1116.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 store/migrations/0059_auto_20170506_1116.py diff --git a/store/migrations/0059_auto_20170506_1116.py b/store/migrations/0059_auto_20170506_1116.py new file mode 100644 index 0000000..24f30c8 --- /dev/null +++ b/store/migrations/0059_auto_20170506_1116.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.3 on 2017-05-06 11:16 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('store', '0058_auto_20170506_0210'), + ] + + operations = [ + migrations.AlterField( + model_name='orderdata', + name='address', + field=models.CharField(max_length=255, verbose_name='Адрес'), + ), + ]