Set new Melange version number to 0-5-20090420 in app.yaml.template.
[Melange.git] / app / index.yaml
blob359120329a927e5035d4161aa0358bf95e48b78f
1 indexes:
3 # used to list proposal in descending order of their score
4 - kind: StudentProposal
5   properties:
6   - name: org
7   - name: status
8   - name: score
9     direction: desc
11 # used to list reviews in ascending order of date
12 - kind: Review
13   properties:
14   - name: is_public
15   - name: scope
16   - name: created
18 # used to determine which orgs have more then 0 slots assigned.
19 - kind: Organization
20   properties:
21   - name: scope
22   - name: status
23   - name: slots
25 # used to order accepted orgs
26 - kind: Organization
27   properties:
28   - name: scope
29   - name: status
30   - name: name
32 # used to determine which proposals have a mentor assigned
33 - kind: StudentProposal
34   properties:
35   - name: org
36   - name: status
37   - name: mentor
39 # used for the bulk mailing of students
40 - kind: Student
41   properties:
42   - name: scope
43   - name: __key__
45 # used for the cron system
46 - kind: Job
47   properties:
48   - name: priority_group
49   - name: status
50   - name: __key__
52 # AUTOGENERATED
54 # This index.yaml is automatically updated whenever the dev_appserver
55 # detects that a new type of query is run.  If you want to manage the
56 # index.yaml file manually, remove the above marker line (the line
57 # saying "# AUTOGENERATED").  If you want to manage some indexes
58 # manually, move them above the marker line.  The index.yaml file is
59 # automatically uploaded to the admin console when you next deploy
60 # your application using appcfg.py.