Skip to main content

Person

Data Dictionary - Entity Table: Person#

The Person Table models individuals, legal persons and entities, separating personal and business relationship data for an entity. The Person represents the entity behind the business relationship. The Person relates to several Person Types and Legal Forms.

Primary Key ('id').ENGINE = InnoDB..
Column NameData TypePK Primary Key, NN-Not Null, NullExampleComments
idBIGINT(12)PK, NN1PrimaryKey-ID, Not Null (auto creates)
Person_TypeBIGINT(12)NULL7Person Type id. See- Person Type table
Nick_NameVARCHAR(45)NULLclient1Nick Name upto 45 characters
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
Person_Type(Person_Type)Person_Type (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
Type_idxPerson(Person_Type ASC)VISIBLE.