forked from erp-dev/erp
feat: auto complete stock change
This commit is contained in:
19
basic_info/migrations/0006_alter_product_merchant.py
Normal file
19
basic_info/migrations/0006_alter_product_merchant.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 5.2.7 on 2025-11-07 06:03
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('basic_info', '0005_customer_created_by'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='product',
|
||||
name='merchant',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.PROTECT, to='basic_info.merchant', verbose_name='所属商户'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user