상품테이블에 재고통보수량 필드 추가
This commit is contained in:
@ -685,4 +685,10 @@ if(!sql_query(" select od_cash_info from {$g5['g5_shop_order_table']} limit 1",
|
||||
DROP `od_cash_tr_code`,
|
||||
DROP `od_cash_id_info` ", true);
|
||||
}
|
||||
|
||||
// 상품테이블 재고통보수량 필드 추가
|
||||
if(!sql_query(" select it_noti_qty from {$g5['g5_shop_item_table']} limit 1 ", false)) {
|
||||
sql_query(" ALTER TABLE `{$g5['g5_shop_item_table']}`
|
||||
ADD `it_noti_qty` int(11) NOT NULL DEFAULT '0' AFTER `it_stock_qty` ", true);
|
||||
}
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user