Skip to main content

Electronic Address

Data Dictionary - Entity Table: Electronic_Address#

Electronic address of a person or organization. Can be email, site, IP address.

Primary Key ('id').ENGINE = InnoDB..
Column NameData TypePK Primary Key, NN-Not Null, NullExampleComments
idBIGINT(12)PK, NN1PrimaryKey-ID, Not Null (auto creates)
AddressVARCHAR(45)NULLclient@glue.comthe e-address upto 45 characters
TypeBIGINT(12)NULL1Type id of the address
NameVARCHAR(45)NULLInformation CenterIn case of email address can represent sender name
PersonBIGINT(12)NULL1ID of Preson PII record
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
EA_Person_PII(Person)Person_PII (id)NO ACTIONNO ACTION
EAType(Type)Electronic_Address_Type (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
Person_idxElectronic_Address(Person ASC)VISIBLE.
Type_idxElectronic_Address(Type ASC)VISIBLE.