Go to the first, previous, next, last section, table of contents.
Maps category id to category path (theme only).
create table catalog_path_<name> ( # # Full path name of the category # pathname text not null, # # MD5 key of the path name # md5 char(32) not null, # # Full path name translated to ids # path varchar(128) not null, # # Id of the last component # id int not null, unique catalog_path_NAME1 (md5), unique catalog_path_NAME2 (path), unique catalog_path_NAME3 (id) )
Go to the first, previous, next, last section, table of contents.