36 lines
1.0 KiB
Python
36 lines
1.0 KiB
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('yonghu', '0018_tixianjilu_dakuan_mode'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='tixianjilu',
|
|
name='jine',
|
|
field=models.DecimalField(
|
|
blank=True, decimal_places=2, max_digits=10, null=True,
|
|
verbose_name='实际到账金额',
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name='tixianjilu',
|
|
name='shenqing_jine',
|
|
field=models.DecimalField(
|
|
blank=True, decimal_places=2, max_digits=10, null=True,
|
|
verbose_name='申请扣款金额(含手续费)',
|
|
),
|
|
),
|
|
migrations.AddField(
|
|
model_name='tixianjilu',
|
|
name='shouxufei',
|
|
field=models.DecimalField(
|
|
blank=True, decimal_places=2, default=0, max_digits=10, null=True,
|
|
verbose_name='手续费',
|
|
),
|
|
),
|
|
]
|