This table stores the relationship between a page
layout and the original page layout template it was based on.
Column Descriptions:
| Name | Type | Description |
| PAGELAYOUT_ID | BIGINT NOT NULL | The primary key of a page layout. Foreign key to
the PAGELAYOUT table. |
| TEMPLATE_ID | BIGINT NOT NULL | The primary key of a page layout template that
the page layout is based on. Foreign key to the PAGELAYOUT
table. |
| OPTCOUNTER | SMALLINT NOT NULL DEFAULT 0 | The optimistic concurrency control counter for
the table. Every time there is an update to the table, the counter
is incremented. |
Indexes:
| Name | Column Names | Type |
| P_0029 | PAGELAYOUT_ID | Primary Key |
| I0001509 | TEMPLATE_ID | Non-Unique Index |
Constrained By Parent Tables:
| Constraint | Columns | Parent Table | Parent Columns | Type |
| F_3766 | PAGELAYOUT_ID | PAGELAYOUT | PAGELAYOUT_ID | Cascade |
| F_3767 | TEMPLATE_ID | PAGELAYOUT | PAGELAYOUT_ID | Cascade |