DaoにDeleteを追加

This commit is contained in:
r-ca 2024-01-24 18:31:45 +09:00
parent 749cad231c
commit 70380df8fd
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -52,4 +52,8 @@ public interface VcsLogDao {
@Update
void updateAll(List<VcsLogEntity> vcsLogs);
// Delete
@Query("DELETE FROM vcs_log WHERE id = :id")
void deleteById(String id);
}