# Generated by Django 2.2 on 2020-09-14 14:31

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('Customer', '0027_orderpayment_method'),
    ]

    operations = [
        migrations.AddField(
            model_name='orderpayment',
            name='credits_to_be_used',
            field=models.FloatField(blank=True, default=0.0, null=True),
        ),
    ]
