[QRTR-45] adjusted Bank fields

This commit is contained in:
DJ Gillespie 2020-04-06 18:48:42 -06:00
parent 79ab592657
commit 55761e023f

View File

@ -41,7 +41,7 @@ class Bank(models.Model):
related_name="banks")
acc_id = models.CharField(max_length=250)
nickname = models.CharField(max_length=250)
official_name = models.CharField(max_length=250)
official_name = models.CharField(max_length=250,blank=True, null=True)
balance_limit = models.DecimalField(decimal_places=3, max_digits=100, blank=True, null=True)
balance = models.DecimalField(decimal_places=3, max_digits=100)
ac_type = models.CharField(max_length=250, blank=True)