Description
概要
くじCPガチャ実行時に取得したアイテムをログ保存
ログテーブル
CREATE TABLE `log_campaign_quest_gacha` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`campaign_no` int(10) unsigned NOT NULL,
`user_no` int(10) unsigned NOT NULL,
`item_type` int(10) unsigned NOT NULL,
`item_no` int(10) unsigned NOT NULL,
`item_count` int(10) unsigned NOT NULL,
`reg_date` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;