You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
719 B

# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
from django.conf import settings
class Migration(migrations.Migration):
dependencies = [
('store', '0019_orderdata_profile'),
]
operations = [
migrations.AlterField(
model_name='orderdata',
name='phone',
field=models.CharField(verbose_name='Номер мобильного телефона', max_length=15),
),
migrations.AlterField(
model_name='orderdata',
name='profile',
field=models.ForeignKey(to=settings.AUTH_USER_MODEL, related_name='orders', null=True, default=None),
),
]