# Generated by Django 4.1.7 on 2023-07-25 16:18

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('inventory', '0008_alter_saleorderitems_discount'),
    ]

    operations = [
        migrations.AddField(
            model_name='consumeraccount',
            name='phone_number',
            field=models.CharField(blank=True, max_length=255, null=True),
        ),
    ]
