[add]: DB migrations fix and Save loan repayment details

This commit is contained in:
VivianDee
2025-04-10 17:50:25 +01:00
parent f252e33be2
commit 1081467f6f
6 changed files with 117 additions and 11 deletions
+2 -1
View File
@@ -2,5 +2,6 @@ from .customer import Customer
from .account import Account
from .loan import Loan
from .transaction import Transaction
from .repayment import Repayment
__all__ = ['Customer', 'Account', 'Loan', 'Transaction']
__all__ = ['Customer', 'Account', 'Loan', 'Transaction', 'Repayment']