#186 가격 필드명 price 로 변경
This commit is contained in:
@ -57,6 +57,7 @@ CREATE TABLE IF NOT EXISTS `shop_cart` (
|
||||
`ct_id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`uq_id` bigint(20) unsigned NOT NULL,
|
||||
`it_id` varchar(20) NOT NULL DEFAULT '',
|
||||
`it_name` varchar(255) NOT NULL DEFAULT '',
|
||||
`it_opt1` varchar(255) NOT NULL DEFAULT '',
|
||||
`it_opt2` varchar(255) NOT NULL DEFAULT '',
|
||||
`it_opt3` varchar(255) NOT NULL DEFAULT '',
|
||||
@ -65,7 +66,7 @@ CREATE TABLE IF NOT EXISTS `shop_cart` (
|
||||
`it_opt6` varchar(255) NOT NULL DEFAULT '',
|
||||
`ct_status` enum('쇼핑','주문','준비','배송','완료','취소','반품','품절') NOT NULL DEFAULT '쇼핑',
|
||||
`ct_history` text NOT NULL,
|
||||
`ct_amount` int(11) NOT NULL DEFAULT '0',
|
||||
`ct_price` int(11) NOT NULL DEFAULT '0',
|
||||
`ct_point` int(11) NOT NULL DEFAULT '0',
|
||||
`ct_point_use` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`ct_stock_use` tinyint(4) NOT NULL DEFAULT '0',
|
||||
@ -392,10 +393,8 @@ CREATE TABLE IF NOT EXISTS `shop_item` (
|
||||
`it_explan` mediumtext NOT NULL,
|
||||
`it_mobile_explan` mediumtext NOT NULL,
|
||||
`it_explan_html` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`it_cust_amount` int(11) NOT NULL DEFAULT '0',
|
||||
`it_amount` int(11) NOT NULL DEFAULT '0',
|
||||
`it_amount2` int(11) NOT NULL DEFAULT '0',
|
||||
`it_amount3` int(11) NOT NULL DEFAULT '0',
|
||||
`it_cust_price` int(11) NOT NULL DEFAULT '0',
|
||||
`it_price` int(11) NOT NULL DEFAULT '0',
|
||||
`it_point` int(11) NOT NULL DEFAULT '0',
|
||||
`it_sell_email` varchar(255) NOT NULL DEFAULT '',
|
||||
`it_use` tinyint(4) NOT NULL DEFAULT '0',
|
||||
|
||||
Reference in New Issue
Block a user