diff --git a/www/web/warppay/migrations/0004_auto_20170425_2211.py b/www/web/warppay/migrations/0004_auto_20170425_2211.py new file mode 100644 index 0000000000000000000000000000000000000000..a6459f2fb7ec00d40c7828bdda0ba98718d84c17 --- /dev/null +++ b/www/web/warppay/migrations/0004_auto_20170425_2211.py @@ -0,0 +1,40 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10 on 2017-04-25 22:11 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('warppay', '0003_auto_20170314_2230'), + ] + + operations = [ + migrations.AddField( + model_name='product', + name='position', + field=models.FloatField(blank=True, default=0, null=True), + ), + migrations.AddField( + model_name='productcategory', + name='position', + field=models.FloatField(blank=True, default=0, null=True), + ), + migrations.AddField( + model_name='usercredit', + name='pinCode', + field=models.CharField(max_length=100, null=True), + ), + migrations.AlterField( + model_name='product', + name='barcode', + field=models.CharField(blank=True, max_length=100, null=True), + ), + migrations.AlterField( + model_name='product', + name='stock_count', + field=models.IntegerField(blank=True, default=0, null=True), + ), + ]