parent
29a55180e3
commit
4e188bbfbf
15 changed files with 248 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 = [ |
||||
('store', '0044_auto_20151223_1612'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='orderdata', |
||||
name='deliv_type', |
||||
field=models.CharField(max_length=2, blank=True, verbose_name='Способ Алемтат', choices=[('E', 'Экспресс-отправления по РК'), ('T', 'Не срочные отправления по РК')], null=True, default=''), |
||||
), |
||||
] |
||||
@ -0,0 +1,15 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0045_auto_20160107_1403'), |
||||
('store', '0045_auto_20151223_1646'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,15 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0046_merge'), |
||||
('store', '0046_auto_20160202_1121'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,15 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0047_merge'), |
||||
('store', '0047_auto_20160229_1409'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,15 @@ |
||||
# -*- coding: utf-8 -*- |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import models, migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0048_auto_20160302_0839'), |
||||
('store', '0048_merge'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,16 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.3 on 2016-03-07 20:44 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0049_merge'), |
||||
('store', '0049_auto_20160307_2043'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,16 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.3 on 2016-03-12 16:33 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0050_merge'), |
||||
('store', '0050_auto_20160312_1628'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,16 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.3 on 2016-03-14 11:41 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0051_cartmodel'), |
||||
('store', '0051_merge'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,16 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.3 on 2016-04-04 10:33 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0053_productvariation_delivery_date'), |
||||
('store', '0052_merge'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,16 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.3 on 2016-07-15 19:20 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0054_merge'), |
||||
('store', '0054_auto_20160715_1811'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,16 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.3 on 2017-03-07 15:49 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0057_auto_20170306_1933'), |
||||
('store', '0055_merge'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,16 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.3 on 2017-05-07 02:57 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0059_auto_20170506_1116'), |
||||
('store', '0058_merge'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,25 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.3 on 2017-06-03 02:27 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0060_merge'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.AlterField( |
||||
model_name='orderdata', |
||||
name='city', |
||||
field=models.CharField(blank=True, max_length=20, null=True, verbose_name='Город Алемтат'), |
||||
), |
||||
migrations.AlterField( |
||||
model_name='orderdata', |
||||
name='deliv_type', |
||||
field=models.CharField(blank=True, default='', max_length=2, null=True, verbose_name='Способ Алемтат'), |
||||
), |
||||
] |
||||
@ -0,0 +1,16 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.3 on 2017-06-03 02:28 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0061_auto_20170603_0220'), |
||||
('store', '0061_auto_20170603_0227'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,16 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.3 on 2017-11-07 18:10 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('store', '0062_productvariation_has_discount'), |
||||
('store', '0062_merge'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
Loading…
Reference in new issue