You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

9 lines
373 B

CREATE TABLE IF NOT EXISTS `tiki_object_attributes` (
`attributeId` INT PRIMARY KEY AUTO_INCREMENT,
`type` varchar(50) NOT NULL,
`itemId` varchar(255) NOT NULL,
`attribute` varchar(25) NOT NULL,
`value` varchar(100),
UNIQUE `item_attribute_uq` ( `type`, `itemId`, `attribute` ),
KEY `attribute_lookup_ix` (`attribute`, `value`)
) ENGINE=MyISAM;