ct_status 를 enum 에서 varchar(255) 로 변경

This commit is contained in:
gnuboard
2013-08-01 16:25:26 +09:00
parent 9426ee708b
commit 71a0beccef

View File

@ -59,7 +59,7 @@ CREATE TABLE IF NOT EXISTS `shop_cart` (
`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 '쇼핑',
`ct_status` varchar(255) NOT NULL DEFAULT '',
`ct_history` text NOT NULL,
`ct_price` int(11) NOT NULL DEFAULT '0',
`ct_point` int(11) NOT NULL DEFAULT '0',