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

JoinBoardWithUserDao.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: 488b61e35ecc6b199ed7bda9c860aa271d94b5aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package it.niedermann.nextcloud.deck.persistence.sync.adapters.db.dao;

import android.arch.persistence.room.Dao;
import android.arch.persistence.room.Query;

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

@Dao
public interface JoinBoardWithUserDao extends GenericDao<JoinBoardWithUser> {
    @Query("DELETE FROM joinboardwithuser WHERE boardId = :localId")
    void deleteByBoardId(long localId);

}