#186 가격 필드명 price 로 변경

This commit is contained in:
chicpro
2013-05-16 09:14:05 +09:00
parent ab15f92def
commit 5759a65cfd
40 changed files with 89 additions and 95 deletions

View File

@ -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',