add new fields (trans-date, pos-date, rancher)
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
# Generated by Django 5.0 on 2025-09-28 10:07
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('warehouse', '0034_inventoryquotasaleitem_livestock_statistic'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='inventoryquotasaletransaction',
|
||||
name='pos_date',
|
||||
field=models.PositiveBigIntegerField(default=0),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='inventoryquotasaletransaction',
|
||||
name='rancher_fullname',
|
||||
field=models.CharField(max_length=150, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='inventoryquotasaletransaction',
|
||||
name='rancher_mobile',
|
||||
field=models.CharField(max_length=25, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='inventoryquotasaletransaction',
|
||||
name='transaction_date',
|
||||
field=models.DateTimeField(auto_now_add=True, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user