From fccb310767e27dd35a5c41ec39255d18d2b8a549 Mon Sep 17 00:00:00 2001 From: Christian Dresen <c.dresen@fh-muenster.de> Date: Tue, 25 Apr 2017 22:11:46 +0200 Subject: [PATCH] [WarpPay] Created Migrations --- .../migrations/0004_auto_20170425_2211.py | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 www/web/warppay/migrations/0004_auto_20170425_2211.py 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 0000000..a6459f2 --- /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), + ), + ] -- GitLab