# Generated by Django 3.2.6 on 2021-08-09 07:25 from django.conf import settings from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('fruit', '0020_purchase_vendor'), ] operations = [ migrations.CreateModel( name='VendorOrder', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('created_at', models.DateTimeField(auto_now_add=True, null=True)), ('updated_at', models.DateTimeField(auto_now=True)), ('price', models.DecimalField(blank=True, decimal_places=2, max_digits=7, null=True)), ('n_unit', models.DecimalField(blank=True, decimal_places=2, max_digits=7, null=True)), ('unit_name', models.CharField(max_length=200, null=True)), ('sub_total', models.DecimalField(blank=True, decimal_places=2, max_digits=10, null=True)), ('vat', models.DecimalField(blank=True, decimal_places=2, max_digits=10, null=True)), ('total', models.DecimalField(blank=True, decimal_places=2, max_digits=10, null=True)), ('created_by', models.ForeignKey(editable=False, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='vendororder_created', to=settings.AUTH_USER_MODEL)), ('modified_by', models.ForeignKey(editable=False, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='vendororder_modified', to=settings.AUTH_USER_MODEL)), ('product', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='fruit.product')), ('store', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='fruit.store')), ('vendor', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='fruit.vendor')), ], options={ 'abstract': False, }, ), ]