from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    dependencies = [
        ('sales_and_marketing', '0010_customerprofile_credit_fields'),
    ]

    operations = [
        migrations.AddField(
            model_name='productvat',
            name='vat_category',
            field=models.CharField(
                choices=[('standard', 'Standard Rated'), ('zero_rated', 'Zero Rated'), ('exempt', 'Exempt')],
                default='standard',
                max_length=20,
            ),
        ),
        migrations.AddField(
            model_name='customerorder',
            name='source_quotation',
            field=models.ForeignKey(
                blank=True,
                null=True,
                on_delete=django.db.models.deletion.SET_NULL,
                related_name='converted_customer_orders',
                to='sales_and_marketing.salesquotation',
            ),
        ),
    ]
