# Generated by Django 4.1.7 on 2023-02-24 17:26

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('pos_system', '0015_alter_invoice_detail_product_invoice_payment'),
    ]

    operations = [
        migrations.AddField(
            model_name='invoice_payment',
            name='message',
            field=models.CharField(blank=True, max_length=255, null=True),
        ),
    ]
