Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NameDatatypeLengthRemarks
idBIGINT20PRIMARY KEY and AUTOINCREMENT
currency_codeBIGINT20FOREIGN KEY m_currency.id
office_idBIGINT20FOREIGN KEY m_office.id
product_idBIGINT20FOREIGN KEY m_loan.id
category_idBIGINT20FOREIGN KEY m_provision_category.id
overdue_in_daysBIGINT20DEFAULT 0
loan_outstanding_balanceBIGINT20DEFAULT 0
amount_to_be_reservedBIGINT20DEFAULT 0
created_byBIGINT20FOREIGN KEY
created_onDATE NOT NULL
modified_byBIGINT20FOREIGN KEY
modified_onDATE  

 

Whenever the provision calculation is done, system is going to make an entry in the 'provision_history' table. The structure of the table is shown below

NameDatatypeLengthDescription
idBIGINT20PRIMARY KEY & AUTO INCREMENT
created_onDATE NOT NULL
journalentry_createdINT1DEFAULT 0
created_byBIGINT20 
created_onDATE  

 

Changes required in existing Classes:

...