feat: create tabs page orders

This commit is contained in:
2025-01-10 16:43:22 -03:00
parent 0e096207a6
commit b84fd3bb69
15 changed files with 270 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
# Generated by Django 5.1.4 on 2025-01-10 19:24
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('comandas', '0003_comanda_status_alter_productcomanda_product'),
('orders', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='order',
name='productComanda',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='comandas.productcomanda'),
),
]