#191 쇼핑몰 설치시 mb_mileage 필드 추가 코드

This commit is contained in:
chicpro
2013-06-03 10:54:04 +09:00
parent 04e2715c13
commit 08abd4a9c4

View File

@ -382,6 +382,10 @@ if($shop_install) {
$sql = preg_replace($source, $target, $sql);
@mysql_query($sql);
}
// mb_mileage 필드추가
sql_query(" ALTER TABLE `{$table_prefix}member`
ADD `mb_mileage` INT(11) NOT NULL DEFAULT '0' AFTER `mb_point` ", false);
}
?>