Jej schema:
CREATE TABLE skin_templates (
template_id int(10) NOT NULL auto_increment,
template_set_id int(10) NOT NULL default 0,
template_group varchar(255) NOT NULL default '',
template_content mediumtext,
template_name varchar(255) default NULL,
template_data text,
template_updated int(10) NOT NULL default 0,
template_removable int(4) NOT NULL default 0,
template_added_to int(10) NOT NULL default 0,
template_user_added INT(0) NOT NULL DEFAULT 0,
template_user_edited INT(0) NOT NULL DEFAULT 0,
template_master_key VARCHAR(100) NOT NULL DEFAULT '',
PRIMARY KEY (template_id),
KEY template_set_id (template_set_id),
KEY template_master_key (template_master_key),
KEY template_name (template_name(100), template_group(100))
);