ct_order 필드 삭제

This commit is contained in:
chicpro
2013-05-28 14:51:45 +09:00
parent 1e5fd5368f
commit dd85d44b63

View File

@ -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;
-- --------------------------------------------------------