ct_num 필드 추가
This commit is contained in:
@ -122,11 +122,20 @@ $result = sql_query($sql, false);
|
||||
if(!$result) {
|
||||
sql_query(" ALTER TABLE `{$g4['shop_cart_table']}`
|
||||
ADD `ct_option` VARCHAR(255) NOT NULL DEFAULT '' AFTER `ct_stock_use`,
|
||||
ADD `ct_num` INT(11) NOT NULL DEFAULT '0' AFTER `ct_qty`,
|
||||
ADD `io_id` VARCHAR(255) NOT NULL DEFAULT '' AFTER `ct_qty`,
|
||||
ADD `io_type` TINYINT(4) NOT NULL DEFAULT '0' AFTER `io_id`,
|
||||
ADD `io_price` INT(11) NOT NULL DEFAULT '0' AFTER `io_type` ", false);
|
||||
}
|
||||
|
||||
// ct_num 추가
|
||||
$sql = " select ct_num from {$g4['shop_cart_table']} limit 1 ";
|
||||
$result = sql_query($sql, false);
|
||||
if(!$result) {
|
||||
sql_query(" ALTER TABLE `{$g4['shop_cart_table']}`
|
||||
ADD `ct_num` INT(11) NOT NULL DEFAULT '0' AFTER `ct_qty` ", false);
|
||||
}
|
||||
|
||||
// it_brand 추가
|
||||
/*
|
||||
$sql = " select it_brand from {$g4['shop_item_table']} limit 1 ";
|
||||
|
||||
Reference in New Issue
Block a user