Welcome to mirror list, hosted at ThFree Co, Russian Federation.

JoinBoardWithLabelDao.java « dao « db « adapters « sync « persistence « deck « nextcloud « niedermann « it « java « main « src « app - github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df8812f5bdf3647096d6e443ca8a57f0dbbb7e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package it.niedermann.nextcloud.deck.persistence.sync.adapters.db.dao;

import androidx.room.Dao;
import androidx.room.Query;

import it.niedermann.nextcloud.deck.model.JoinBoardWithLabel;

@Dao
public interface JoinBoardWithLabelDao extends GenericDao<JoinBoardWithLabel> {
    @Query("DELETE FROM joinboardwithlabel WHERE boardId = :localId")
    void deleteByBoardId(long localId);
}