# Generated by Django 5.2.7 on 2025-12-23 14:58 import django.db.models.deletion from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('core', '0003_supplier'), ] operations = [ migrations.CreateModel( name='Sale', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('sale_date', models.DateTimeField(auto_now_add=True)), ('total_amount', models.DecimalField(decimal_places=2, default=0.0, max_digits=10)), ('customer', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.customer')), ], ), migrations.CreateModel( name='SaleItem', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('quantity', models.PositiveIntegerField(default=1)), ('price', models.DecimalField(decimal_places=2, max_digits=10)), ('product', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='core.product')), ('sale', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='items', to='core.sale')), ], ), ]