pg 결제 tno 저장 필드명 변경

This commit is contained in:
chicpro
2013-06-19 15:20:31 +09:00
parent 452094836f
commit f72791a315
8 changed files with 46 additions and 28 deletions

View File

@ -346,4 +346,13 @@ if(!$result) {
sql_query(" ALTER TABLE `{$g4['shop_item_table']}`
ADD `it_notax` TINYINT(4) NOT NULL DEFAULT '0' AFTER `it_point_type` ", false);
}
// 에스크로필드 추가
$sql = " select od_tno from {$g4['shop_order_table']} limit 1 ";
$result = sql_query($sql, false);
if(!$result) {
sql_query(" ALTER TABLE `{$g4['shop_order_table']}`
ADD `od_tno` VARCHAR(255) NOT NULL DEFAULT '' AFTER `od_settle_case`,
ADD `od_escrow` TINYINT(4) NOT NULL DEFAULT '0' AFTER `od_tno` ", true);
}
?>