Files
along_django/peizhi/migrations/0021_withdrawconfig_dongjie_quanju_enabled.py
XingQue c0aefd3f68 修复冻结迁移:WithdrawConfig 字段改到 peizhi 应用独立迁移。
避免 yonghu.0023 跨应用修改 withdrawconfig 导致 KeyError。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-10 04:10:18 +08:00

17 lines
416 B
Python

from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('peizhi', '0020_xcx_sys_peizhi_shangjia_paifa_limit'),
]
operations = [
migrations.AddField(
model_name='withdrawconfig',
name='dongjie_quanju_enabled',
field=models.BooleanField(default=False, verbose_name='全员冻结总开关'),
),
]