Reputation: 986
How do I specify a namespace in my index.yaml?
Example:
- kind: Account
properties:
- name: first_name
- name: balance
https://developers.google.com/appengine/docs/python/config/indexconfig#Python_Index_definitions
Upvotes: 2
Views: 591
Reputation: 564
You don't. Namespaces let you segregate data at a logical level but they share the index definitions and depending on how you implement them, they usually share the same kinds as well.
Upvotes: 4