Files
commafeed/src/main/resources/META-INF/orm.xml

12 lines
564 B
XML
Raw Normal View History

2013-03-25 23:15:19 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2013-03-25 23:33:06 +01:00
<entity-mappings version="2.0"
xmlns="http://java.sun.com/xml/ns/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2013-03-25 23:15:19 +01:00
xsi:schemaLocation="
http://java.sun.com/xml/ns/persistence/orm
http://java.sun.com/xml/ns/persistence/orm_2_0.xsd">
2013-04-06 17:10:38 +02:00
<named-query name="EntryStatus.unreadCounts">
<query>select s.subscription.id, count(s) from FeedEntryStatus s where s.subscription.user=:user and s.read=false group by s.subscription.id</query>
2013-04-06 17:21:48 +02:00
</named-query>
2013-03-26 09:54:59 +01:00
2013-03-25 23:15:19 +01:00
</entity-mappings>