Menu items
| Name | Datatype | Description |
|---|---|---|
| id | int(11) | Primary key of the entry in table, auto increments by default |
| parent_id | int(11) | Page_id from which this page is spawned- details of the submenus (NULL would mean that there are no submenus that are associated with this table |
| name | varchar(255) | The name of the page in concern |
| label | varchar(255) | Label of the option as appearing in the menu |
| seq | int(11) | |
| controller_action_id | int(11) | The controller action that the activeity of this menu item spawns; FK into the CONTROLLER_ACTIONS table |
| content_page_id | int(11) | The page id to which this is to be redirected; FK into the CONTROL_PAGE table; specifies the address of the page that needs to be redirected to, based on apt permissions |
Back to Database Tables Main page.