Add SKU field to Product model (issue #67)

This commit is contained in:
2026-05-05 09:01:24 +02:00
parent bee360dfbb
commit 6be67a9100
3 changed files with 22 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
# Generated by Django 6.0.4 on 2026-05-05 07:01
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('tienda', '0006_alter_category_name'),
]
operations = [
migrations.AddField(
model_name='product',
name='sku',
field=models.CharField(blank=True, max_length=50, null=True, unique=True),
),
]