MenuItemID | int not null identity(1,1) | Primary key for the table |
DisplayText | varchar(10) not null | Text displayed to the user |
Url | varchar(300) null | The URL to navigate to when the user clicks this menu item |
ParentID | int null | MenuItemID of the parent menu item; if null, this item is a top-level item. Has foreign key against MenuItemID column. |