Skip to content

Commit

Permalink
[#3932] Add QuestionAnswerStore datastore-index
Browse files Browse the repository at this point in the history
  • Loading branch information
dedenbangkit committed Nov 7, 2022
1 parent 22551b4 commit c2e3e5b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions GAE/war/WEB-INF/datastore-indexes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,11 @@
<property name="questionID" direction="asc"/>
<property name="createdDateTime" direction="asc"/>
</datastore-index>
<datastore-index kind="QuestionAnswerStore" ancestor="false" source="manual">
<property name="questionID" direction="asc"/>
<property name="surveyInstanceId" direction="asc"/>
<property name="value" direction="asc"/>
</datastore-index>

<datastore-index kind="Question" ancestor="false" source="manual">
<property name="type" direction="asc" />
Expand Down Expand Up @@ -247,7 +252,7 @@

<datastore-index kind="SurveyInstance" ancestor="false" source="manual">
<property name="__key__" direction="desc" />
</datastore-index>
</datastore-index>
<datastore-index kind="SurveyInstance" ancestor="false" >
<property name="surveyId" direction="asc"/>
<property name="collectionDate" direction="desc"/>
Expand Down Expand Up @@ -297,7 +302,7 @@
<datastore-index kind="SurveyedLocale" ancestor="false" source="manual">
<property name="surveyGroupId" direction="asc" />
<property name="lastUpdateDateTime" direction="asc" />
</datastore-index>
</datastore-index>
<datastore-index kind="SurveyedLocale" ancestor="false" source="manual">
<property name="countryCode" direction="asc"/>
<property name="createdDateTime" direction="desc"/>
Expand Down

0 comments on commit c2e3e5b

Please sign in to comment.