## 概要 [Task3457: タスク削除API実装](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/3457) - タスク削除APIとUTを実装しました。 ## レビューポイント - テストケースは適切でしょうか? - リポジトリでの削除処理は適切でしょうか? - エラー時のコード使い分けは適切でしょうか? ## UIの変更 - なし ## 動作確認状況 - ローカルで確認
5 lines
192 B
SQL
5 lines
192 B
SQL
-- +migrate Up
|
|
ALTER TABLE `tasks` ADD INDEX `idx_account_id_and_audio_file_id` (account_id,audio_file_id);
|
|
|
|
-- +migrate Down
|
|
ALTER TABLE `tasks` DROP INDEX `idx_account_id_and_audio_file_id`; |