Skip to main content

Legal Identification

Data Dictionary - Entity Table: Legal_Identification#

Stores Legal Identification documents of the person.

Primary Key ('idLegal_Identification').ENGINE = InnoDB..
Table NameColumn NameData TypePK Primary Key, NN-Not Null, NullExample
idLegal_IdentificationINTPK, NN1PrimaryKey-ID, Not Null (auto creates)
IdentificationVARCHAR(45)NULLAA 11 111Identification document number
Identification_typeVARCHAR(45)NULL1Type of identification, e.g. national passport, driver license
Issuer_CountryBIGINT(12)NULL12country id from Country table
Issuer_placeBIGINT(12)NULL33Address ID from Address table
Issue_DateDATENULL10/10/99issue date of id
Expiry_DateDATENULL12/12/22expiration date on id
PersonBIGINT(12)NULL12Person ID found in the Person_PII table
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
LIPerson(Person)Person_PII (id)NO ACTIONNO ACTION
Issuer_Country('Id')Country (id)NO ACTIONNO ACTION
Issuer_Place('Id')Address (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
Person_idxLegal_Identification(Person ASC)VISIBLE.
Issuer_CountryLegal_Identification(Issuer_Country ASC)VISIBLE.
Issuer_PlaceLegal_Identification(Issuer_Place ASC)VISIBLE.