상품테이블에 재고통보수량 필드 추가

This commit is contained in:
chicpro
2013-11-13 11:08:00 +09:00
parent 07006980da
commit 2c7c9e0a01
8 changed files with 43 additions and 11 deletions

View File

@ -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);
}
?>