PR

【7/5】リリース #926

wada opened this at 2021-07-02T15:10:52; closed

Description

opened by wada at 2021-07-02T15:10:52; updated 2024-12-06T16:13:36

【6/28】仲介屋改修 #872
【6/30】勝利の証追加、冒険にモンスター追加 #920

リリース手順

#テーブルの作成 - OK
user_pirate_store_money
log_pirate_store_money
log_pirate_store_sell

#dbデプロイ - OK
git merge origin/release_0705
git push
deploy db

#webデプロイ - OK
git merge origin/release_0705
git push
update web
deploy web

#告知設定 - OK
542: 画像キャッシュ対応、テキスト修正
800: 公開

#Q&A更新
4,5

作成テーブル

#ルシエ紹介用の所持金
CREATE TABLE `user_pirate_store_money` (
  `user_no` bigint(20) NOT NULL,
  `money1` int(11) NOT NULL,
  `money2` int(11) NOT NULL,
  `money3` int(11) NOT NULL,
  PRIMARY KEY (`user_no`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='ルシエ商会所持金';

#所持金の変動ログ
CREATE TABLE `log_pirate_store_money` (
  `id` int(11) NOT NULL,
  `user_no` bigint(20) NOT NULL,
  `status` mediumint(9) NOT NULL COMMENT '0買取所、それ以外lineup_no',
  `money_json` text COLLATE utf8_unicode_ci,
  `after_money_json` text COLLATE utf8_unicode_ci,
  `reg_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='ルシエ商会所持金ログ';

ALTER TABLE `log_pirate_store_money`
  ADD PRIMARY KEY (`id`),
  ADD KEY `reg_date` (`reg_date`),
  ADD KEY `user_no` (`user_no`,`reg_date`);

ALTER TABLE `log_pirate_store_money`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;

#購入ログ
CREATE TABLE `log_pirate_store_sell` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_no` bigint(20) NOT NULL,
  `lineup_no` mediumint(9) NOT NULL,
  `reg_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  KEY `reg_date` (`reg_date`),
  KEY `user_no` (`user_no`,`reg_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci COMMENT='ルシエ商会所購入ログ';

Comment

#11921 by kouho at 2021-07-05T10:52:09; updated 2021-07-05T10:52:09

@wada
変な更新が入っていないのは確認しました。問題はないと思います。

kouho add_label at 2021-07-05T10:52:15: 皇甫 LGTM

Comment

#11923 by iwamoto at 2021-07-05T11:14:07; updated 2021-07-05T11:14:07

@wada
大丈夫かと思います。
注意事項の件だけまた、別途対応お願いいたします

iwamoto add_label at 2021-07-05T11:14:14: 岩本 LGTM
wada merge at 2021-07-05T14:51:58: 【7/5】リリース
wada close at 2021-07-05T14:51:58: Close

Commit range

based415a1b4f8ba07377ebcf4f2498e8f703cc4d2db
head90db6a5807935157370de0ec3ad99824e87a813e
base branchjolly/jr-web:master
head branchjolly/jr-web:release_0705

View commits

Commit details are loaded from Git when a dynamic archive server is running, or can be embedded with --include-commits.
Files changed96 filesView patch
statusfile
modifiedlib/SubFunc.inc
addedlib/ajax/cardPieceShop_storeSellExec.inc
modifiedlib/class/const/ItemConst.class.php
modifiedlib/class/const/PresentNameConst.class.php
modifiedlib/class/present_box/PresentBoxManager.class.php
modifiedlib/conf/class/CardPieceConfig.class.php
addedlib/conf/class/PirateStoreConfig.class.php
modifiedlib/conf/class/WeekdayLimitedItemConfig.class.php
modifiedlib/conf/define.inc
modifiedlib/models/Card_piece.php
addedlib/models/Pirate_store.php
addedlib/models/dao/log_pirate_store_sell.php
modifiedlib/public/CardPieceShop-Default.inc
addedlib/public/CardPieceShop-StoreBuy.inc
addedlib/public/CardPieceShop-StoreBuyCheck.inc
addedlib/public/CardPieceShop-StoreBuyExec.inc
addedlib/public/CardPieceShop-StoreBuyResult.inc
modifiedpublic_html/ajax.php
addedpublic_html/img/card_piece/card_detail/319_1.png
addedpublic_html/img/card_piece/card_detail/319_2.png
addedpublic_html/img/card_piece/card_detail/51_1.png
addedpublic_html/img/card_piece/card_detail/51_2.png
addedpublic_html/img/card_piece/icon/101.png
addedpublic_html/img/card_piece/icon/2.png
addedpublic_html/img/card_piece/shop/checkbutton_store_sell.png
addedpublic_html/img/card_piece/shop/checkframe_down.png
addedpublic_html/img/card_piece/shop/checkframe_middle.png
addedpublic_html/img/card_piece/shop/checkframe_up.png
addedpublic_html/img/card_piece/shop/endframe_store_sell.png
addedpublic_html/img/card_piece/shop/header_store_buy.jpg
addedpublic_html/img/card_piece/shop/header_store_piece.jpg
addedpublic_html/img/card_piece/shop/header_store_sell.jpg
addedpublic_html/img/card_piece/shop/icon_money_1.png
addedpublic_html/img/card_piece/shop/icon_money_blue.png
addedpublic_html/img/card_piece/shop/icon_money_green.png
addedpublic_html/img/card_piece/shop/icon_money_red.png
addedpublic_html/img/card_piece/shop/paper_store_selll.png
addedpublic_html/img/card_piece/shop/paper_store_selll_limit_time.png
addedpublic_html/img/card_piece/shop/pirate_store_buy_tab.png
addedpublic_html/img/card_piece/shop/pirate_store_piece_tab.png
addedpublic_html/img/card_piece/shop/pirate_store_sell_tab.png
addedpublic_html/img/card_piece/shop/requestbutton_store_sell.png
addedpublic_html/img/card_piece/shop/store_buy_card_piece_link.png
addedpublic_html/img/card_piece/shop/store_buy_finalcheck.png
addedpublic_html/img/card_piece/shop/store_buy_status_up_item_link.png
addedpublic_html/img/card_piece/shop/store_buy_strong_item_link.png
modifiedpublic_html/img/info_jrye/542/info1.jpg
modifiedpublic_html/img/info_jrye/542/info5.jpg
addedpublic_html/img/item/120/1903.jpg
addedpublic_html/img/item/150/1903.jpg
addedpublic_html/img/item/58/1903.jpg
addedpublic_html/img/item/60/1903.jpg
addedpublic_html/img/item/70/1903.jpg
addedpublic_html/img/item/card_piece/120/101.jpg
addedpublic_html/img/item/card_piece/120/2.jpg
addedpublic_html/img/item/card_piece/150/101.jpg
addedpublic_html/img/item/card_piece/150/2.jpg
addedpublic_html/img/item/card_piece/58/101.jpg
addedpublic_html/img/item/card_piece/58/2.jpg
addedpublic_html/img/item/card_piece/60/101.jpg
addedpublic_html/img/item/card_piece/60/2.jpg
addedpublic_html/img/item/card_piece/70/101.jpg
addedpublic_html/img/item/card_piece/70/2.jpg
addedpublic_html/img/main/main_pirate_store.png
addedpublic_html/img/mobile/card_piece/shop/m_header_store_piece.jpg
addedpublic_html/img/season_pass/main/modal/frame_bottom.png
addedpublic_html/img/season_pass/main/modal/frame_detail_top.png
addedpublic_html/img/season_pass/main/modal/frame_get_top.png
addedpublic_html/img/season_pass/main/modal/frame_middle.png
addedpublic_html/img/season_pass/main/modal/frame_middle_1.png
addedpublic_html/img/season_pass/main/modal/frame_pass_bottom.png
addedpublic_html/img/season_pass/main/modal/frame_pass_middle.png
addedpublic_html/img/season_pass/main/modal/frame_pass_top.png
addedpublic_html/img/season_pass/main/modal/frame_reliese_top.png
addedpublic_html/img/season_pass/main/modal/frame_skin_bottom.png
addedpublic_html/img/season_pass/main/modal/frame_skin_middle.png
addedpublic_html/img/season_pass/main/modal/frame_skin_top.png
addedpublic_html/img/season_pass/main/modal/frame_teamrank_top.png
addedpublic_html/img/season_pass/main/x.png
addedpublic_html/img/sp_menu/d_spMenu_pirate_store.png
modifiedpublic_html/index.php
modifiedpublic_html/js/JOLLYROGER.js
modifiedpublic_html/js/JOLLYROGER_func.js
modifiedpublic_html/js/jr_func.min.js
modifiedpublic_html/js/jr_main.min.js
modifiedpublic_html/template/CardPieceShop-Default.tpl
addedpublic_html/template/CardPieceShop-StoreBuy.tpl
addedpublic_html/template/CardPieceShop-StoreBuyCheck.tpl
addedpublic_html/template/CardPieceShop-StoreBuyResult.tpl
modifiedpublic_html/template/Main.tpl
modifiedpublic_html/template/footer.tpl
modifiedpublic_html/template/footer_nolink.tpl
modifiedpublic_html/template/header_sp.tpl
modifiedpublic_html/template/parts/parts_card_info_modal.tpl
modifiedpublic_html/template/parts_cardpiece_info_modal.tpl
addedpublic_html/template/parts_pirate_store_item_info_modal.tpl
Patch body is stored as a separate file to keep this page lightweight.