비회원 장바구니 기능관련 필드 추가

This commit is contained in:
chicpro
2013-05-30 17:41:07 +09:00
parent b681429fad
commit a7003db7db
4 changed files with 19 additions and 0 deletions

View File

@ -56,6 +56,7 @@ DROP TABLE IF EXISTS `shop_cart`;
CREATE TABLE IF NOT EXISTS `shop_cart` (
`ct_id` int(11) NOT NULL AUTO_INCREMENT,
`uq_id` bigint(20) unsigned NOT NULL,
`mb_id` varchar(255) NOT NULL DEFAULT '',
`it_id` varchar(20) NOT NULL DEFAULT '',
`it_name` varchar(255) NOT NULL DEFAULT '',
`ct_status` enum('쇼핑','주문','준비','배송','완료','취소','반품','품절') NOT NULL DEFAULT '쇼핑',