Files
along_django/peizhi/migrations/0019_xcx_sys_peizhi_shangpin_mode.py
2026-06-27 02:53:51 +08:00

21 lines
554 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('peizhi', '0018_xcx_xieyi_must_sign'),
]
operations = [
migrations.AddField(
model_name='xcxsyspeizhi',
name='shangpin_shenhe_mode',
field=models.PositiveSmallIntegerField(
default=2,
help_text='1=正常运营(shenhezhuangtai=1)2=审核专用(shenhezhuangtai=2)',
verbose_name='点单商品展示模式',
),
),
]