PR

【4/28 12:00】リリース #48

wada opened this at 2022-04-27T12:26:57; closed

Description

opened by wada at 2022-04-27T12:26:57; updated 2022-09-08T17:36:52

5月のポイントCP #1769
【4/28】7日お得なパックセット #1754

トランザクションテーブル

CREATE TABLE `user_purchase_login_bonus` (
  `event_no` int(11) unsigned NOT NULL,
  `user_no` int(11) unsigned NOT NULL,
  `current_days` tinyint(4) unsigned NOT NULL COMMENT '現在の日数',
  `bonus_complete` tinyint(4) unsigned NOT NULL COMMENT '受け取り終わったか',
  `item_send_date` datetime NOT NULL COMMENT 'アイテムを付与した日時',
  `reg_date` datetime NOT NULL COMMENT '購入日時',
  PRIMARY KEY (`event_no`,`user_no`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

CREATE TABLE `log_user_purchase_login_bonus` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `event_no` int(11) unsigned NOT NULL,
  `user_no` int(11) unsigned NOT NULL,
  `current_days` tinyint(4) unsigned NOT NULL COMMENT '日数',
  `item_send_date` datetime NOT NULL COMMENT 'アイテムを付与した日時',
  PRIMARY KEY (`id`),
  KEY `event_user` (`event_no`,`user_no`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
wada merge at 2022-04-28T10:12:48: 【4/28 12:00】リリース
wada close at 2022-04-28T10:12:48: Close

Commit range

base3a73334a84c4408d05e4c4c1a51b8ec333bf9d9d
headda1ba4262294edf737efaa40962cadc52971a31b
base branchjolly/jrye-db:master
head branchjolly/jrye-db:release_0428

View commits

Commit details are loaded from Git when a dynamic archive server is running, or can be embedded with --include-commits.
Files changed7 filesView patch
statusfile
addedcsv/master_purchase_login_bonus.csv
addedcsv/master_purchase_login_bonus_item.csv
modifiedcsv/master_shop.csv
modifiedcsv/master_shop_item.csv
modifiedcsv/master_yamada_campaign.csv
addedschema/master_purchase_login_bonus.yml
addedschema/master_purchase_login_bonus_item.yml
Patch body is stored as a separate file to keep this page lightweight.