Models added

This commit is contained in:
CHIEFSOFT\ameye
2025-04-30 05:56:38 -04:00
parent 4e7e01f838
commit d1b9d80c84
3 changed files with 68 additions and 0 deletions
+1
View File
@@ -8,6 +8,7 @@ class LoanRepaymentSchedule(db.Model):
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
loan_id = db.Column(db.Integer, nullable=False)
transaction_id = db.Column(db.String(50), nullable=True)
product_id = db.Column(db.String(20), nullable=True)
installment_number = db.Column(db.Integer, nullable=False)
due_date = db.Column(db.DateTime, nullable=False)