Removed auto increment on order_no in sales_orders table
authorJoe Hunt <joe.hunt.consulting@gmail.com>
Sat, 19 Sep 2009 10:22:35 +0000 (10:22 +0000)
committerJoe Hunt <joe.hunt.consulting@gmail.com>
Sat, 19 Sep 2009 10:22:35 +0000 (10:22 +0000)
sql/en_US-demo.sql
sql/en_US-new.sql

index ea83c5522009069bac4de1cfa3a179ed885a5006..2066ceb8f3ea5a848d93048176e4ef33460fd217 100644 (file)
@@ -1302,7 +1302,7 @@ INSERT INTO `0_sales_order_details` VALUES ('5', '5', '30', '102', '17inch VGA M
 DROP TABLE IF EXISTS `0_sales_orders`;
 
 CREATE TABLE `0_sales_orders` (
-  `order_no` int(11) NOT NULL auto_increment,
+  `order_no` int(11) NOT NULL,
   `trans_type` smallint(6) NOT NULL default '30',
   `version` tinyint(1) unsigned NOT NULL default '0',
   `type` tinyint(1) NOT NULL default '0',
index 5deaf13b46c5c2889e7dd6ce8d6aeccb2395fa9f..1a230da7defa53a84971cb8517ca57a72b79f6b4 100644 (file)
@@ -1138,7 +1138,7 @@ CREATE TABLE `0_sales_order_details` (
 DROP TABLE IF EXISTS `0_sales_orders`;
 
 CREATE TABLE `0_sales_orders` (
-  `order_no` int(11) NOT NULL auto_increment,
+  `order_no` int(11) NOT NULL,
   `trans_type` smallint(6) NOT NULL default '30',
   `version` tinyint(1) unsigned NOT NULL default '0',
   `type` tinyint(1) NOT NULL default '0',