21 lines
505 B
Python
21 lines
505 B
Python
# Generated by Django 4.2.17 on 2025-01-29 12:59
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('inventory', '0011_alter_saleorder_estimate'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='saleorder',
|
|
name='created',
|
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
|
|
preserve_default=False,
|
|
),
|
|
]
|