Go to the first, previous, next, last section, table of contents.


catalog_entry2category_<name>

Link a record from the cataloged table with a category (theme only).

create table catalog_entry2category_<name> (
  #
  # Table management information 
  #
  created datetime not null,
  modified timestamp not null,

  #
  # State information
  #
  info set ('hidden'),
  #
  # Rowid of the record from cataloged table
  #
  row int not null,
  #
  # Rowid of the category
  #
  category int not null,
  #
  # External identifier to synchronize with alien catalogs
  #
  externalid varchar(32) not null default ",
)


Go to the first, previous, next, last section, table of contents.