From dd85d44b63503cad17ecccc76c4d19dace9a16d9 Mon Sep 17 00:00:00 2001 From: chicpro Date: Tue, 28 May 2013 14:51:45 +0900 Subject: [PATCH] =?UTF-8?q?ct=5Forder=20=ED=95=84=EB=93=9C=20=EC=82=AD?= =?UTF-8?q?=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install/shop.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/shop.sql b/install/shop.sql index 004dd05fe..a37343594 100644 --- a/install/shop.sql +++ b/install/shop.sql @@ -74,9 +74,9 @@ CREATE TABLE IF NOT EXISTS `shop_cart` ( `ct_ip` varchar(25) NOT NULL DEFAULT '', `ct_send_cost` varchar(255) NOT NULL, `ct_direct` tinyint(4) NOT NULL, - `ct_order` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`ct_id`), - KEY `uq_id` (`uq_id`) + KEY `uq_id` (`uq_id`), + KEY `ct_num` (`ct_num`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- --------------------------------------------------------