DeleteByIdを修正

This commit is contained in:
r-ca 2023-12-14 04:08:44 +09:00
parent 2ab8999638
commit e626829b5c
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -54,7 +54,6 @@ public interface TagDao {
@Delete @Delete
void deleteAll(List<Tag> tags); void deleteAll(List<Tag> tags);
@Delete @Query("DELETE FROM tag WHERE id = :id")
void deleteById(String id); void deleteById(String id);
} }