Skip to main content

Book

Data Dictionary - Entity Table: Book#

Book represents a booking center which is linked to the Organizational_entity table to represent a specific location or business unit within the Organization under which the customer portfolios are maintaned.

Primary Key ('id').ENGINE = InnoDB..
Column NameData TypePK Primary Key, NN-Not Null, NullExampleComment
idBIGINT(12)PK, NN1PrimaryKey-ID, Not Null (auto creates)
NameVARCHAR(255)NULLUK Onshore 1, UK Onshore 2, Switzerland Onshore, UK Offshore 1, US West, US CentralFull name of the Book upto 255 characters
Organizational_EntityBIGINT(12)NULL1Organizational entity
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
Organizational_Entity(Organizational_Entity)Organizational_Entity (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
Organizational_Entity_idxBook(Organizational_Entity ASC)VISIBLE;.