Go to the first, previous, next, last section, table of contents.
Describe a category (theme only).
create table catalog_category_<name> (
#
# Table management information
#
rowid int autoincrement
created datetime not null,
modified timestamp not null,
#
# State information
#
info set ('root'),
#
# Full name of the category
#
name varchar(255) not null,
#
# Total number of records in this category and bellow
#
count int default 0,
#
# External identifier to synchronize with alien catalogs
#
externalid varchar(32) not null default ",
)
Go to the first, previous, next, last section, table of contents.