smc_cet_cibil_py/Models/com_borrower_profile.py
2023-10-06 16:44:28 +05:30

11 lines
345 B
Python

# import db object from flask app
from app import db
# database tables
class Com_borrower_profile(db.Model):
id = db.Column(db.Integer, primary_key =True)
temp_id = db.Column(db.Integer, nullable = False)
ApplicationRefno = db.Column(db.Numeric, nullable = False)
EnqInfoBorrowerName = db.Column(db.String, nullable = False)