팝업 레이어 접속기기 설정할 수 있도록 수정

This commit is contained in:
chicpro
2013-12-06 10:21:23 +09:00
parent e5cc941e0c
commit 9ab109aca6
8 changed files with 92 additions and 5 deletions

View File

@ -737,4 +737,10 @@ if(!sql_query(" select it_soldout from {$g5['g5_shop_item_table']} limit 1 ", fa
sql_query(" ALTER TABLE `{$g5['g5_shop_item_table']}`
ADD `it_soldout` tinyint(4) NOT NULL DEFAULT '0' AFTER `it_use` ", true);
}
// 팝업 레이어 접속기기 필드 추가
if(!sql_query(" select nw_device from {$g5['g5_shop_new_win_table']} limit 1 ", false)) {
sql_query(" ALTER TABLE `{$g5['g5_shop_new_win_table']}`
ADD `nw_device` varchar(10) NOT NULL DEFAULT 'both' AFTER `nw_id` ", true);
}
?>