#210 cart 테이블에 배송비 지불방법만 기록하도록 수정

This commit is contained in:
chicpro
2013-06-13 13:48:35 +09:00
parent 1347cb9654
commit 79adb5d9b4
11 changed files with 71 additions and 49 deletions

View File

@ -74,8 +74,7 @@ CREATE TABLE IF NOT EXISTS `shop_cart` (
`io_price` int(11) NOT NULL DEFAULT '0',
`ct_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ct_ip` varchar(25) NOT NULL DEFAULT '',
`ct_send_cost` int(11) NOT NULL DEFAULT '0',
`ct_send_cost2` tinyint(4) NOT NULL DEFAULT '0',
`ct_send_cost` tinyint(4) NOT NULL DEFAULT '0',
`ct_direct` tinyint(4) NOT NULL DEFAULT '0',
`ct_select` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`ct_id`),