## 概要 [Task3599: テンプレートファイル削除API実装](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/3599) - テンプレートファイル削除APIとテストを実装しました。 ## レビューポイント - テンプレートファイル削除できないエラーの条件は適切でしょうか? - テストケースは適切でしょうか? ## UIの変更 - なし ## 動作確認状況 - ローカルで確認
5 lines
172 B
SQL
5 lines
172 B
SQL
-- +migrate Up
|
|
ALTER TABLE `tasks` ADD INDEX `idx_tasks_template_file_id` (template_file_id);
|
|
|
|
-- +migrate Down
|
|
ALTER TABLE `tasks` DROP INDEX `idx_tasks_template_file_id`; |