...
The table cat_lang contains all language related information about a category Category.
Table structure
Field name | Field specification | Comment / Explanation |
---|---|---|
idcatlang | int(11) | Primary key (auto increment) |
idcat | int(11) | Foreign key to table cat |
idlang | int(11) | Foreign key to table lang |
idtplcfg | int(11) | Foreign key to table template_conf |
name | varchar(255) | Name of the category |
visible | tinyint(1) | Flag if category is visible (online) or not |
public | tinyint(1) | Flag if category is public (not access protected) or not |
status | int(11) | Unused. |
author | varchar(32) | Username of the articles author |
created | datetime | Date and time of creation |
lastmodified | datetime | Date and time of last modification |
startidartlang | int(11) | Foreign key to table art_lang as reference for the start article of the category |
urlname | varchar(64) | Alias name of the category |
urlpath | varchar(255) | Unused. |
...