refactor: rename column.

This commit is contained in:
2024-07-13 17:17:45 -05:00
parent a8f8820a55
commit 3570af7b60
3 changed files with 20 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ class ReconciliationJar(models.Model):
is_valid = models.BooleanField(default=False)
date_time = models.DateTimeField()
description = models.CharField(max_length=255, null=True, blank=True)
reconciler = models.CharField(max_length=255, null=False, blank=False)
reconcilier = models.CharField(max_length=255, null=False, blank=False)
cash_taken = models.DecimalField(max_digits=9, decimal_places=2)
cash_discrepancy = models.DecimalField(max_digits=9, decimal_places=2)