26 lines
612 B
Python
26 lines
612 B
Python
# Generated by Django 4.2.17 on 2025-01-16 09:46
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('django_ledger', '0017_alter_accountmodel_unique_together_and_more'),
|
|
('inventory', '0003_alter_carmake_car_type'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='InvoiceModelBase',
|
|
fields=[
|
|
],
|
|
options={
|
|
'proxy': True,
|
|
'indexes': [],
|
|
'constraints': [],
|
|
},
|
|
bases=('django_ledger.invoicemodel',),
|
|
),
|
|
]
|