我的模型的一个字段如下所示:
total_amount = models.DecimalField(max_digits=20,decimal_places=4,default=Decimal('0.0000'))
但是当我运行这个命令时python manage.py syncdb
,它会显示这个错误:
NameError: name 'Decimal' is not defined
我已经进口from django.db import models
了,我还需要进口其他东西吗?
请帮忙!