Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
概要
下書きの削除機能を実装した。
下書きが削除可能な記事として、一度も記事公開を行なっていない記事を対象とする。
published_atで判定するのではなく、ArticleHistoryにデータが存在した場合公開したことがある記事として判定し、削除可能かどうかを判断するロジックで実装を行なった。
環境変数(SSMパラメータ)
関連URL
影響範囲(ユーザ)
ユーザー
影響範囲(システム)
技術的変更点概要
ArticleHistory内に記事データが存在する場合は公開済みとし記事を論理削除する。
ArticleInfoとArticleContentのデータをDeletedDraftArticleInfoTableとDeletedDraftArticleContentTableにコピーし、コピー後に元データを削除するように実装を行なった。
使い方
DBやDBへのクエリに対する変更
DeletedDraftArticleInfoTableとDeletedDraftArticleContentTableを追加した。
ArticleHistoryにarticle_id-indexを追加した。
ブロックチェーンへの影響
なし
個人情報の取り扱いに変更のあるリリースか
ない
ロギング
ユニットテスト
あり
テスト結果とテスト項目
保留した項目とTODOリスト
注意点・その他