made slice balance nullable
This commit is contained in:
parent
0b32c1d20d
commit
70453bcdcf
@ -59,7 +59,7 @@ class BankAccount(models.Model):
|
||||
class Slice(models.Model):
|
||||
name = models.CharField(max_length=250)
|
||||
icon = models.CharField(max_length=250)
|
||||
balance = models.DecimalField(decimal_places=3, max_digits=100)
|
||||
balance = models.DecimalField(decimal_places=3, max_digits=100, null=True, blank=True)
|
||||
description = models.TextField(max_length=255, null=True, blank=True)
|
||||
avail_parents = models.Q(
|
||||
app_label='qrtr_account',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user