diff --git a/qrtr_account/models.py b/qrtr_account/models.py index ae21ff2..1abf44b 100644 --- a/qrtr_account/models.py +++ b/qrtr_account/models.py @@ -39,10 +39,14 @@ class Bank(models.Model): on_delete=models.CASCADE) institution = models.ForeignKey(Institution, on_delete=models.CASCADE, related_name="banks") + acc_id = models.CharField(max_length=250) nickname = models.CharField(max_length=250) + official_name = models.CharField(max_length=250) + 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) ac_subtype = models.CharField(max_length=250, blank=True) + mask = models.CharField(max_length=4,blank=True) @property def qid(self):