Created
January 6, 2014 14:07
-
-
Save MichaelAquilina/8283313 to your computer and use it in GitHub Desktop.
index.yaml for google app engine project
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
indexes: | |
# AUTOGENERATED | |
# This index.yaml is automatically updated whenever the dev_appserver | |
# detects that a new type of query is run. If you want to manage the | |
# index.yaml file manually, remove the above marker line (the line | |
# saying "# AUTOGENERATED"). If you want to manage some indexes | |
# manually, move them above the marker line. The index.yaml file is | |
# automatically uploaded to the admin console when you next deploy | |
# your application using appcfg.py. | |
- kind: Album | |
ancestor: yes | |
properties: | |
- name: date_created | |
direction: desc | |
- kind: Comment | |
properties: | |
- name: parent | |
- name: date_created | |
direction: desc | |
- kind: Comment | |
ancestor: yes | |
properties: | |
- name: date_created | |
direction: desc | |
- kind: Photo | |
ancestor: yes | |
properties: | |
- name: date_created |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment