#282 uq_id 필드 제거

This commit is contained in:
chicpro
2013-08-23 10:39:16 +09:00
parent 8ae41a2213
commit 523c6e5e31
44 changed files with 216 additions and 269 deletions

View File

@ -414,4 +414,10 @@ if(!sql_query(" select od_tax_mny from {$g4['shop_order_table']} limit 1 ", fals
ADD `od_vat_mny` INT(11) NOT NULL DEFAULT '0' AFTER `od_tax_mny`,
ADD `od_free_mny` INT(11) NOT NULL DEFAULT '0' AFTER `od_vat_mny` ", true);
}
// cart uq_id를 od_id로 변경
if(!sql_query(" select od_id from {$g4['shop_cart_table']} limit 1 ", false)) {
sql_query(" ALTER TABLE `{$g4['shop_cart_table']}`
CHANGE `uq_id` `od_id` BIGINT(2) UNSIGNED NOT NULL ", true);
}
?>