21 lines
605 B
Python
21 lines
605 B
Python
# Generated by Django 5.2.1 on 2025-06-18 15:46
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('django_ledger', '0022_alter_billmodel_bill_items_and_more'),
|
|
('inventory', '0002_remove_saleorder_journal_entry'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='saleorder',
|
|
name='journal_entry',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='django_ledger.journalentrymodel'),
|
|
),
|
|
]
|