避免 yonghu.0023 跨应用修改 withdrawconfig 导致 KeyError。 Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
416 B
Python
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='全员冻结总开关'),
|
|
),
|
|
]
|