from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('sales_and_marketing', '0009_productpricing_product_net_price_hydraulic_engineers'),
    ]

    operations = [
        migrations.AddField(
            model_name='customerprofile',
            name='customer_credit_limit',
            field=models.CharField(blank=True, default='0.00', max_length=50),
        ),
        migrations.AddField(
            model_name='customerprofile',
            name='customer_payment_terms_days',
            field=models.CharField(blank=True, default='30', max_length=10),
        ),
    ]
