Skip to main content

Product Hierarchy

Data Dictionary - Entity Table: Product_Hierarchy#

Product_Hierarchy allows maintenance of flexible structure for the investment products

Primary Key ('id').ENGINE = InnoDB..
Column NameData TypePK Primary Key, NN-Not Null, NullExampleComments
idBIGINT(12)PK, NN1PrimaryKey-ID, Not Null (auto creates)
ParentBIGINT(12)NULL1Top of hierarchy (parent)
ChildBIGINT(12)NULL2Under parent hierarchy (child)
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
Parent_Product(Parent)Product (id)NO ACTIONNO ACTION
Child_Product(Child)Product (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
Parent_Product_idxProduct_Hierachy(Parent ASC)VISIBLE.
Child_Product_idxProduct_Hierachy(Child ASC)VISIBLE.