-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: FK constraint error when delete Program with MapView (#19686)
- Loading branch information
1 parent
3a5ec37
commit f4c8d17
Showing
6 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,10 +30,13 @@ | |
import java.util.List; | ||
import org.hisp.dhis.common.AnalyticalObjectStore; | ||
import org.hisp.dhis.organisationunit.OrganisationUnitGroupSet; | ||
import org.hisp.dhis.program.Program; | ||
|
||
/** | ||
* @author Morten Olav Hansen <[email protected]> | ||
*/ | ||
public interface MapViewStore extends AnalyticalObjectStore<MapView> { | ||
List<MapView> getByOrganisationUnitGroupSet(OrganisationUnitGroupSet groupSet); | ||
|
||
List<MapView> findByProgram(Program program); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters