Database – Customer Credit Score Entity (customer_credit_score_entity)
This holds credit score information for a customer. These scores can either be pulled from the credit bureau, or they can be manually entered.
Column |
Data Type |
Column Info |
Value Notes |
Other |
id |
int(11) |
The id of the entity |
||
customer_id |
int(11) |
ID for the customer |
||
equifax_score |
int(4) |
Equifax score for the customer |
||
transunion_score |
int(4) |
Transunion score for the customer |
||
experian_score |
int(4) |
Experian score for the customer |
||
created |
timestamp |
Timestamp of when the entity was created |
||
lastUpdated |
timestamp |
Timestamp of when the entity was last updated |
||
modified |
datetime |
Timestamp of when the entity was last updated |
||
deleted |
tinyint(4) |
Whether or not the entity was deleted |
1 - yes, 0 - no |