Skip to content
Snippets Groups Projects
Commit fccb3107 authored by Christian Dresen's avatar Christian Dresen
Browse files

[WarpPay] Created Migrations

parent 72609172
No related branches found
No related tags found
No related merge requests found
# -*- 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),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment