#120 fix checkRun and checkStyle

This commit is contained in:
T-Midnight 2019-05-22 15:45:23 +04:00
parent 5f214620bf
commit 457f1da985

View File

@ -12,5 +12,5 @@ public interface DeadlineRepository extends JpaRepository<Deadline, Integer> {
@Query(
value = "SELECT date FROM Deadline d WHERE (d.grant_id = ?1) AND (d.date = ?2)",
nativeQuery = true)
Date findByGrantIdAndDate(Integer grant_id, Date date);
Date findByGrantIdAndDate(Integer grantId, Date date);
}