staniapl napisał(a):no akurat status_id nie jest inkrementowany
W załącznikach zrzuty z tabel 'order_status' z bazy, dla wersji 1.4.x i dla wersji 1.5.x
Ja przy nich nic nie zmieniałem
Tak zresztą wyglądają tabele w instalatorze :
1.4.x
- Kod: Zaznacz cały
--
-- Table structure for table `oc_order_status`
--
CREATE TABLE `oc_order_status` (
`order_status_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL,
`name` varchar(32) COLLATE utf8_polish_ci NOT NULL,
PRIMARY KEY (`order_status_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=14 ;
a tak dla 1.5.x :
- Kod: Zaznacz cały
--
-- Table structure for table `oc_order_status`
--
DROP TABLE IF EXISTS `oc_order_status`;
CREATE TABLE `oc_order_status` (
`order_status_id` int(11) NOT NULL AUTO_INCREMENT,
`language_id` int(11) NOT NULL,
`name` varchar(32) NOT NULL,
PRIMARY KEY (`order_status_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
Hmmm, chyba jednak mam rację , są 'AUTO_INCREMENT'