Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
id | BIGINT | 19 | √ | null |
|
|
||||||
loan_id | BIGINT | 19 | null |
|
|
|||||||
status_enum | SMALLINT | 5 | null |
|
|
|||||||
reschedule_from_installment | SMALLINT | 5 | √ | NULL |
|
|
Rescheduling will start from this installment |
|||||
reschedule_from_date | DATE | 10 | √ | NULL |
|
|
Rescheduling will start from the installment with due date similar to this date. |
|||||
recalculate_interest | BIT | 1 | √ | NULL |
|
|
If set to 1, interest will be recalculated starting from the reschedule period. |
|||||
reschedule_reason_cv_id | INT | 10 | √ | NULL |
|
|
ID of code value of reason for rescheduling |
|||||
reschedule_reason_comment | VARCHAR | 500 | √ | NULL |
|
|
Text provided in addition to the reason code value |
|||||
submitted_on_date | DATE | 10 | null |
|
|
|||||||
submitted_by_user_id | BIGINT | 19 | null |
|
|
|||||||
approved_on_date | DATE | 10 | √ | NULL |
|
|
||||||
approved_by_user_id | BIGINT | 19 | √ | NULL |
|
|
||||||
rejected_on_date | DATE | 10 | √ | NULL |
|
|
||||||
rejected_by_user_id | BIGINT | 19 | √ | NULL |
|
|
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
PRIMARY | Primary key | Asc | id |
approved_by_user_id | Performance | Asc | approved_by_user_id |
loan_reschedule_request_loan_id | Performance | Asc | loan_id |
rejected_by_user_id | Performance | Asc | rejected_by_user_id |
reschedule_reason_cv_id | Performance | Asc | reschedule_reason_cv_id |
submitted_by_user_id | Performance | Asc | submitted_by_user_id |