From 55761e023fb6a65dcdae87cd9439e0a5efa4e16b Mon Sep 17 00:00:00 2001 From: DJ Gillespie Date: Mon, 6 Apr 2020 18:48:42 -0600 Subject: [PATCH] [QRTR-45] adjusted Bank fields --- qrtr_account/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrtr_account/models.py b/qrtr_account/models.py index 1abf44b..8f599ac 100644 --- a/qrtr_account/models.py +++ b/qrtr_account/models.py @@ -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)