Database – Application Form (loan_application_form_entity)
Description
The application form allows potential borrowers the option to fill out an application form.
Table Fields
Column | Data Type | Column Info | Value Notes |
id | int(11) | The ID of the application form. | |
name | varchar(255) | The name of the specific application form. | |
content | text | The body content of the application form. | |
submit_message | varchar(255) | Custom message for applicants after they submit the application | |
styles_text | text | Custom CSS | |
preconfigured_loan_id | int(11) | The ID of the associated preconfigured loan. | |
active | tinyint(1) | Specifies whether the application form is active or not. | 1 - yes 0 - no |
priority | int(4) | Application priority | |
deleted | tinyint(1) | Determines whether the application form is deleted or not. | 1 - yes 0 - no |
created | datetime | Specifies when the application form was created. | |
lastUpdated | timestamp | Specifies when the application form was last updated. |