18 lines
353 B
Python
18 lines
353 B
Python
# Generated by Django 4.2.17 on 2025-01-29 13:02
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('inventory', '0012_saleorder_created'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='saleorder',
|
|
options={'ordering': ['created']},
|
|
),
|
|
]
|