DeleteByIdを修正

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

View File

@ -56,7 +56,6 @@ public interface DocumentDao {
@Delete
void deleteAll(List<Document> documents);
@Delete
@Query("DELETE FROM document WHERE id = :id")
void deleteById(String id);
}