32 lines
858 B
Python
32 lines
858 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('orders', '0008_order_waibu_penalty_staff'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='penalty',
|
|
name='ApplicantBonusRate',
|
|
field=models.DecimalField(
|
|
db_column='shenqingren_fenhong_lilv',
|
|
decimal_places=4,
|
|
default=0.0,
|
|
max_digits=5,
|
|
verbose_name='申请人分红锁定利率',
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name='penalty',
|
|
name='BonusCredited',
|
|
field=models.BooleanField(
|
|
db_column='fenhong_yiruzhang',
|
|
default=False,
|
|
verbose_name='分红是否已入账',
|
|
),
|
|
),
|
|
]
|