포인트 유효기간 추가 및 내역 삭제 추가

This commit is contained in:
chicpro
2013-07-29 17:45:15 +09:00
parent 9eb3b7e415
commit ef60fd161c
8 changed files with 179 additions and 57 deletions

View File

@ -501,7 +501,8 @@ CREATE TABLE IF NOT EXISTS `g4s_point` (
`po_rel_id` varchar(20) NOT NULL default '',
`po_rel_action` varchar(255) NOT NULL default '',
PRIMARY KEY (`po_id`),
KEY `index1` (`mb_id`,`po_rel_table`,`po_rel_id`,`po_rel_action`)
KEY `index1` (`mb_id`,`po_rel_table`,`po_rel_id`,`po_rel_action`),
KEY `index2` (`po_expire_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------