# Generated by Django 5.2.13 on 2026-06-09 21:03

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("smehub_marketplace", "0006_salesrecord_source_invoice_no_and_more"),
    ]

    operations = [
        migrations.AddField(
            model_name="productlisting",
            name="external_ref",
            field=models.PositiveBigIntegerField(
                blank=True,
                db_index=True,
                help_text="Source id from the UltimatePOS `products` table.",
                null=True,
                unique=True,
            ),
        ),
    ]
