- Регистрация
- 6 Ноя 2006
- Сообщения
- 1.624
- Реакции
- 343
- Заблокирован
- #241
может кто-то выложить только структуру БД, хочу позаимствовать идею Product Variation очень понравилось, не много конечно доработать и будет идеально))
Product Variation в этом движке можно экспортировать?
на разновидности там 3 таблицы:
Код:
CREATE TABLE IF NOT EXISTS `isc_product_variations` (
`variationid` int(11) NOT NULL auto_increment,
`vname` varchar(100) NOT NULL default '',
`vnumoptions` int(11) NOT NULL default '0',
`vvendorid` int(10) unsigned NOT NULL default '0',
`importoptionid` int(11) NOT NULL default '0',
PRIMARY KEY (`variationid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=51 ;
Код:
CREATE TABLE IF NOT EXISTS `isc_product_variation_combinations` (
`combinationid` int(11) NOT NULL auto_increment,
`vcproductid` int(11) NOT NULL default '0',
`vcproducthash` varchar(32) NOT NULL default '',
`vcvariationid` int(11) NOT NULL default '0',
`vcenabled` tinyint(4) NOT NULL default '1',
`vcoptionids` varchar(100) NOT NULL default '',
`vcsku` varchar(50) NOT NULL default '',
`vcpricediff` enum('','add','subtract','fixed') NOT NULL default '',
`vcprice` decimal(20,4) NOT NULL default '0.0000',
`vcweightdiff` enum('','add','subtract','fixed') NOT NULL default '',
`vcweight` decimal(20,4) NOT NULL default '0.0000',
`vcimage` varchar(100) NOT NULL default '',
`vcthumb` varchar(100) NOT NULL default '',
`vcstock` int(11) NOT NULL default '0',
`vclowstock` int(11) NOT NULL default '0',
PRIMARY KEY (`combinationid`),
KEY `i_product_variation_combinations_vcvariationid` (`vcvariationid`),
KEY `i_product_variation_combinations_vcproductid` (`vcproductid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=52 ;
Код:
CREATE TABLE IF NOT EXISTS `isc_product_variation_options` (
`voptionid` int(11) NOT NULL auto_increment,
`vovariationid` int(11) NOT NULL default '0',
`voname` varchar(255) NOT NULL default '',
`vovalue` text,
`vooptionsort` int(11) NOT NULL default '0',
`vovaluesort` int(11) NOT NULL default '0',
PRIMARY KEY (`voptionid`),
KEY `i_product_variation_options_vovariationid` (`vovariationid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=55 ;
дай знать, что получится, любопытно