From 373c98017bf73312b804e9aa0e659a2045be2dbd Mon Sep 17 00:00:00 2001 From: gnuboard Date: Wed, 6 Nov 2013 10:11:05 +0900 Subject: [PATCH] =?UTF-8?q?#319=20=EC=83=81=ED=92=88=ED=85=8C=EC=9D=B4?= =?UTF-8?q?=EB=B8=94=EC=97=90=20=EA=B2=80=EC=83=89=EC=9D=84=20=EC=9C=84?= =?UTF-8?q?=ED=95=98=EC=97=AC=20=ED=83=9C=EA=B7=B8=EC=97=86=EB=8A=94=20?= =?UTF-8?q?=EC=83=81=ED=92=88=EC=84=A4=EB=AA=85=20=EC=A0=80=EC=9E=A5?= =?UTF-8?q?=EC=9A=A9=20=ED=95=84=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- extend/shop.extend2.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/extend/shop.extend2.php b/extend/shop.extend2.php index 1107521c0..fb6913d03 100644 --- a/extend/shop.extend2.php +++ b/extend/shop.extend2.php @@ -373,6 +373,7 @@ if(!$result) { } */ +/* // 쇼핑몰 스킨 필드 추가 if (!isset($default['de_shop_skin'])) { sql_query(" ALTER TABLE `{$g5['g5_shop_default_table']}` @@ -645,4 +646,12 @@ if(stripos($row['Type'], 'enum') !== false) { sql_query(" ALTER TABLE `{$g5['g5_shop_cart_table']}` CHANGE `ct_status` `ct_status` varchar(255) NOT NULL DEFAULT '' ", true); } +*/ + + +// 상품테이블에 검색을 위하여 태그없는 상품설명 저장용 필드 추가 +if(!sql_query(" select it_explan_strip_tags from {$g5['g5_shop_item_table']} limit 1 ", false)) { + sql_query(" ALTER TABLE `{$g5['g5_shop_item_table']}` + ADD `it_explan_strip_tags` TEXT NOT NULL AFTER `it_explan` ", true); +} ?>