건별로 적립된 포인트를 조회할 수 있도록 수정

This commit is contained in:
chicpro
2013-07-26 17:26:27 +09:00
parent 56232158a4
commit b14f5a37ab
8 changed files with 56 additions and 191 deletions

View File

@ -108,7 +108,8 @@ if(!sql_query(" select cf_point_term from {$g4['config_table']} ", false)) {
sql_query(" ALTER TABLE `{$g4['point_table']}`
ADD `po_use_point` int(11) NOT NULL DEFAULT '0' AFTER `po_point`,
ADD `po_expired` tinyint(4) NOT NULL DEFAULT '0' AFTER `po_use_point`,
ADD `po_expire_date` date NOT NULL DEFAULT '0000-00-00' AFTER `po_expired` ", false);
ADD `po_expire_date` date NOT NULL DEFAULT '0000-00-00' AFTER `po_expired`
ADD `po_mb_point` int(11) NOT NULL DEFAULT '0' AFTER `po_expire_date` ", false);
}
$g4['title'] = '환경설정';