@@verze 2 @@sql CREATE TABLE `mod_eshop_sestava` ( `id` int(11) NOT NULL auto_increment, `kategorie` int(11) NOT NULL, `ipopis` text NOT NULL, `url` text NOT NULL, `obrazek` text NOT NULL, PRIMARY KEY (`id`), KEY `kategorie` (`kategorie`) ) CREATE TABLE `mod_eshop_sestava2produkt` ( `idsestava` int(11) NOT NULL, `idprodukt` int(11) NOT NULL, `jazyk` int(11) NOT NULL, `pocet` int(11) NOT NULL, `nastavitelny_pocet` tinyint(1) NOT NULL, `cena` text, `popis` text NOT NULL, `aktivni` tinyint(1) NOT NULL, `priorita` tinyint(4) default '0', PRIMARY KEY (`idsestava`,`idprodukt`,`jazyk`), KEY `aktivni` (`aktivni`), KEY `idprodukt` (`idprodukt`), KEY `jazyk` (`jazyk`) ) CREATE TABLE `mod_eshop_sestava_detail` ( `master` int(11) NOT NULL, `jazyk` int(11) NOT NULL, `nazev` text NOT NULL, `popis` text NOT NULL, title text, description text, keywords text, PRIMARY KEY (`master`,`jazyk`), KEY `jazyk` (`jazyk`) ) @@files mod_eshop/sestavy mod_eshop/sestavy/full mod_eshop/sestavy/ikona mod_eshop/sestavy/maly mod_eshop/sestavy/nahled @@conf+:eshop_conf.php $povolit_sestavy=true;