#328 상품문의에 비밀글 추가

This commit is contained in:
chicpro
2013-11-21 15:07:14 +09:00
parent 2a6ceabe9e
commit 9f9f581f11
11 changed files with 172 additions and 69 deletions

View File

@ -718,4 +718,10 @@ if(!sql_query(" select de_mobile_search_list_skin from {$g5['g5_shop_default_tab
ADD `de_mobile_search_img_width` int(11) NOT NULL DEFAULT '0' AFTER `de_mobile_search_list_mod`,
ADD `de_mobile_search_img_height` int(11) NOT NULL DEFAULT '0' AFTER `de_mobile_search_img_width` ", true);
}
// 상품문의 비밀글 필드 추가
if(!sql_query(" select iq_secret from {$g5['g5_shop_item_qa_table']} limit 1 ", false)) {
sql_query(" ALTER TABLE `{$g5['g5_shop_item_qa_table']}`
ADD `iq_secret` tinyint(4) NOT NULL DEFAULT '0' AFTER `mb_id` ", true);
}
?>